Quote:
Originally Posted by TheLastSuperman
What code did you use? Please post it  .
You can try adding this to .htaccess file:
Code:
RewriteCond %{THE_REQUEST} ^GET\ /forums/
RewriteRule ^forums/(.*) /category/$1 [L,R=301]
|
I tried your code but it didn't work
or it redirected to /category/ but die in 1 music note
here's my htaccess code, it is code from vbulletin
Code:
# Options -MultiViews
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -l [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^.*$ - [NC,L]
RewriteRule ^blogs/.* blog.php [QSA]
RewriteRule ^entries/.* entry.php [QSA]
# Forum
RewriteRule ^threads/.* showthread.php [QSA]
RewriteRule ^forums/.* forumdisplay.php [QSA]
RewriteRule ^members/.* member.php [QSA]
Honestly i don't want url redirections by htaccess, which I need is, when hover on forums (forumdisplay) then it was ..../category/...
Thanks