Reputation: 727
The situation is simple. I create a wildcard subdomain in my cpanel that goes something like this: *.mysite.com.
I can load the page but I want to take the value of the wildcard as a parameter of GET so the page can actually display the relevant contents based on that GET value.
So what i want to know is if its possible to have a rewrite rule that allows me to do the following.
Get: $_GET['store']=='andystore' from the url: http://andystore.mysite.com
Upvotes: 3
Views: 374
Reputation: 785126
You can use this code in your DOCUMENT_ROOT/.htaccess
file:
RewriteEngine On
RewriteBase /
# capture first part of host name
RewriteCond %{HTTP_HOST} ^([^.]+)\.mysite\.com$ [NC]
# make sure store= query parameter isn't there
RewriteCond %{QUERY_STRING} !(^|&)store= [NC]
# rewrite to current URI?store=backererence #1 from host name
RewriteRule ^ %{REQUEST_URI}?store=%1 [L,QSA]
Upvotes: 2
Reputation: 2783
RewriteCond %{HTTP_HOST} ^mysite.com$ [NC]
RewriteRule ^(.+)$ http://$1.mysite.com [L,R=301]
Upvotes: 1