Mod Rewrite Help v2
Posted: Mon Jun 25, 2007 9:09 am
I am now a bit more expierenced with mod rewrite but I am having a bit of a strange problem. I have a symbolic link folder called poker-forum and I need it to be treated as a folder but it is not happening because of this rule I have:
which is no fun because I have another folder that I can directly go to no problem. I have tried this rule to make all poker-forum entries to go to the poker-forum link folder:
but that does not send anything to the folder.
can anyone give me a little help?
Code: Select all
RewriteRule ^([a-z_-]+)$ $1.php
RewriteRule ^([a-z_-]+)/$ $1.phpCode: Select all
RewriteRule ^poker-forum$ poker-forum/ [QSA]
RewriteRule ^poker-forum/$ poker-forum/ [QSA]can anyone give me a little help?