vote up 0 vote down star

i wanna add a rewrite rule to apache 2.2 .htaccess file that if the rest of the rewrite rules did not comply and if the url is not found, to redirect to a specific php file. how do i do that ?

flag

What does "did not comply" mean? I cannot understand what you want. – Slavo Aug 3 at 15:00

1 Answer

vote up 4 vote down check

A simpler solution might be to set up a custom 404 error page. Add something like this to your httpd.conf file...

ErrorDocument 404 /missingpage.php

If you just want a "catch all" rule that will be used if nothing else is a match, try something like this...

RewriteRule ^/(.*)$ /catchall.php?url=$1

This will need to be the last rule that apache finds though, as they are handled in the order they appear (as far as I know anyway...)

link|flag
you helped a lot. thanks :) – ufk Aug 4 at 19:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.