Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

URL rewrite for Subdomain

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

like image 775
Lawrence Avatar asked Dec 07 '25 10:12

Lawrence


2 Answers

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]

Reference: Apache mod_rewrite Introduction

Apache mod_rewrite Technical Details

like image 79
anubhava Avatar answered Dec 10 '25 00:12

anubhava


RewriteCond %{HTTP_HOST} ^mysite.com$ [NC]
RewriteRule ^(.+)$ http://$1.mysite.com [L,R=301]
like image 28
Ferrakkem Bhuiyan Avatar answered Dec 10 '25 00:12

Ferrakkem Bhuiyan