Hi, I'm making a site for client, and whever I click a broken (404) link it says "No input file specified." I tried using .htaccess to make my own custom 404 page but this doesn't work either-- I still keep getting that annoying "No input file specified." message.
Whats going on??
Here's the contents of my .htaccess file.
ErrorDocument 404 [url]http://accsv.org/page404.php[/url]
ErrorDocument 403 [url]http://accsv.org/page404.php[/url]
SetEnvIfNoCase User-Agent "^WebStripper" bad_bot
SetEnvIfNoCase User-Agent "^WebWhacker" bad_bot
SetEnvIfNoCase User-Agent "^WebZIP" bad_bot
SetEnvIfNoCase User-Agent "^Wget" bad_bot
SetEnvIfNoCase User-Agent "^JOC" bad_bot
SetEnvIfNoCase Referer "accsv.org" local_ref=1
DirectoryIndex index.html index.htm
<FilesMatch ".(gif|jpg|zip)">
Order Allow,Deny
Allow from env=local_ref
deny from env=bad_bot
</FilesMatch>
I tried changing the 404 page to page404.html and still no luck.