ohdang888 Posted January 3, 2011 Share Posted January 3, 2011 ok so i have set up wildcard subdomains on my VPS, and this current mod_rewrite code is working great. EXCEPT: say i have this url: http://test.domain.com/current/path I want that to go to index.php?siteName=test&request=/current/path right now, what i'm getting (i know this by print_r($_GET)), is siteName=test (works great), but request=index.php Whats wrong here? Any help is greatly appreciated, Thanks <IfModule mod_rewrite.c> Options +FollowSymLinks Options +Indexes RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} !www.domain.com$ [NC] RewriteCond %{HTTP_HOST} ^(www.)?([a-z0-9-]+).domain.com [NC] RewriteRule (.*) index.php?siteName=%2&request=$1 [L] </IfModule> Quote Link to comment Share on other sites More sharing options...
johnny86 Posted January 3, 2011 Share Posted January 3, 2011 What about changing RewriteRule (.*) index.php?siteName=%2&request=$1 [L] to RewriteRule (index\.php)?(.*) index.php?siteName=%2&request=$2 [L] Quote Link to comment Share on other sites More sharing options...
ohdang888 Posted January 3, 2011 Author Share Posted January 3, 2011 What about changing RewriteRule (.*) index.php?siteName=%2&request=$1 [L] to RewriteRule (index\.php)?(.*) index.php?siteName=%2&request=$2 [L] Now request is empty, no matter what path i put after domain.com Quote Link to comment Share on other sites More sharing options...
johnny86 Posted January 3, 2011 Share Posted January 3, 2011 How about: RewriteCond %{HTTP_HOST} !www.domain.com$ [NC] RewriteCond %{HTTP_HOST} ^(www.)?([a-z0-9-]+).domain.com(.*) [NC] RewriteRule .* index.php?siteName=%2&request=%3 [L] Quote Link to comment Share on other sites More sharing options...
ohdang888 Posted January 3, 2011 Author Share Posted January 3, 2011 How about: RewriteCond %{HTTP_HOST} !www.domain.com$ [NC] RewriteCond %{HTTP_HOST} ^(www.)?([a-z0-9-]+).domain.com(.*) [NC] RewriteRule .* index.php?siteName=%2&request=%3 [L] http://testing.domain.com No it outright fails to do anything... Quote Link to comment Share on other sites More sharing options...
ohdang888 Posted January 3, 2011 Author Share Posted January 3, 2011 I tried RewriteCond %{HTTP_HOST} !www.domain.com$ [NC] RewriteCond %{HTTP_HOST} ^(www.)?([a-z0-9-]+).domain.com([.]*) [NC] RewriteRule .* index.php?siteName=%2&request=%3 [L] and still outright not working... gah! Quote Link to comment Share on other sites More sharing options...
ohdang888 Posted January 4, 2011 Author Share Posted January 4, 2011 gah why is this so difficult! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.