Forum Moderators: bakedjake
I've got a simple rewrite condition, that seems to be working well if placed inside <virtualhost> at httpd.conf, yet does not work if placed at .htaccess (of documentroot dir):
RewriteEngine on
RewriteRule ^/(.+)err\.html /error.html [PT,L]
it rewrites to error.html if these directives are placed on httpd.conf, but returns 404 if placed in .htaccess.
anyone has any idea?