RewriteCond %{HTTP_HOST} ^( [NC]
RewriteRule ^(.*)$ /webapps/my_webapp/$1
I want to take all requests to either foo.com or and redirect to /webapps/my_webapp/xxxxxxxx
What am i missing in my rule?
TIA....
-G
RewriteRule ^(.*)$ /webapps/my_webapp/$1
I want to take all requests to either foo.com or and redirect to /webapps/my_webapp/xxxxxxxx
What am i missing in my rule?
TIA....
-G