I need to point the root domain of my hosting account to a subdirectory (joomla). I want this to be invisible (i.e. browser address bar doesn't change). Also, I need this to work when a user hits the root or a subfile/subfolder.
I've tried the following rules, which work individually, but I can't get them to work together.
This one works when no subfile/subfolder is specified:
RewriteEngine On
RewriteRule ^$ /joomla/ [L]
And this one works when a subfile/subfolder IS specified:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.+)$ /joomla/$1 [L]
I just can't figure out how to combine them.