I thought i had the 404 set to go to 404.php, but i also have Mod_rewrite set to drop .php, so i dropped the .php in the htaccess file.
Here is what i have,
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST> order deny,allow deny from all allow from all </Limit> <Limit PUT DELETE> order deny,allow deny from all </Limit>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) $1.php [L]
ErrorDocument 404 /404
But if you load a random page name it doesn't go to 404.php anymore.
Where did i go wrong?