What are the requirements to use php mod_rewrite?
The possibility to set the Error 404 document
something like
ErrorDocument 404 /path/to/your/error404.phpin your .htaccess
Do I have to use my .htaccess for the rules?
My server give’s me an internal server error if my .htaccess contains any rule!
no, you could write the RewriteRules and Base into a file with a name different to .htaccess, i.e. myrules.txt
you just have to tell the class the name to this file i.e. with
you just have to tell the class the name to this file i.e. with
$ModRewrite->htaccess = "./_myrules.txt";
