Forum Moderators: phranque
below .htaccess lines are ok. But it redirected to [mysite.com...]
When I remove [R] , it's giving internal server error.
RewriteCond %{HTTP_HOST}!^www\.mysite\.com
RewriteCond %{HTTP_HOST} ([^.]+)\.mysite\.com$ [NC]
RewriteRule ^(.*)$ [mysite.com...] [R]
Pls. let me know any solution for this.
RewriteCond %{HTTP_HOST} !^www\.example\.com
RewriteCond %{HTTP_HOST} ([^.]+)\.example\.com
RewriteCond %{REQUEST_URI} !^/booklist\.php$
RewriteCond %{QUERY_STRING} !^id=.
RewriteRule (.*) /booklist.php?id=%1 [L]
Jim