I have been working this issue for several nights with no luck. I'm trying to Rewrite web requests using (.htaccess)
from: cobweb.seas.gwu.edu/~mpnl
to: cobweb.seas.gwu.edu/~mpnl/joomla
My latest (.htaccess) file below returns a 500 Internal Server Error:
Sure appreciate some pointers on what is wrong with this code.
from: cobweb.seas.gwu.edu/~mpnl
to: cobweb.seas.gwu.edu/~mpnl/joomla
My latest (.htaccess) file below returns a 500 Internal Server Error:
Code:
# turn on Rewrite
RewriteEngine on
RewriteCond %{HTTP_HOST} ^([URL unfurl="true"]www.)?cobweb.seas.gwu.edu/~mpnl$[/URL]
RewriteCond %{REQUEST_URI} !^/joomla/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /joomla/$1 [L]
RewriteRule ^(/)?$ joomla/index.php [L]
Sure appreciate some pointers on what is wrong with this code.