Forum Moderators: phranque
RewriteEngine On RewriteRule (.*) index.php
but I don't want .txt file extensions to be effected.
How do I rewrite in this exception so my robots.txt file still loads?
thanks
RewriteEngine On RewriteRule (.htm) index.php
so now I'm only rewriting '.htm' files
I hope this helps someone else
RewriteEngine On RewriteRule \.htm$ index.php
and maybe an [R] or [R=301]
;)