The hierarchay as follows
public_html
public_html/joomla
public_html/joomla/forum
Currently www.muziksupremacy.com is a site with no index.html
and users have to go to www.muziksupremacy.com/for
@ravenpl Ive tried the first case
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/forum
RewriteCond .* /forum%{REQUEST_URI} [L]
and placed it into public_html/joomla
and got Internal Server Error for www.muziksupremacy.com and www.muziksupremacy.com/for
am I placing in the wrong dir?
Main Topics
Browse All Topics





by: ravenplPosted on 2009-09-30 at 11:31:28ID: 25461824
Do You want the forum to be shown as www.muziksupremacy.com/ or it should redirect to /forum/ ?
The first case
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/forum
RewriteCond .* /forum%{REQUEST_URI} [L]
The latter case
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} =/
RewriteCond .* /forum/ [L,R=301]