Hi All,
I'm trying to hide php extension using .htaccess and it works but, I also want to show custom error page when, somebody enters url which is not exist. The code is mentioned below :-
RewriteEngine on
# Rewrite /foo/bar to /foo/bar.php
RewriteRule ^([^.?]+)$ %{REQUEST_URI}.php [L]
# Return 404 if original request is /foo/bar.php
RewriteCond %{THE_REQUEST} "^[^ ]* .*?\.php[? ].*$"
RewriteRule .* - [L,R=404]
# NOTE! FOR APACHE ON WINDOWS: Add [NC] to RewriteCond like this:
# RewriteCond %{THE_REQUEST} "^[^ ]* .*?\.php[? ].*$" [NC]
ErrorDocument 404 /ap/errors/filenotfound.html
Right now my php extension is hidden but, custom page for 404 error is not appearing instead of that, it showing below error msg:-
**Object not found!
The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.
If you think this is a server error, please contact the webmaster.
Error 404
localhost
Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 **
Thanks in Advance..