I have a web with php when i open http://www.example.com/1230.php and http://www.example.com/1230.php/1231.php showing same page. So i need to help for http://www.example.com/1230.php/1231.php need to show 404 error page how is possible Thanks
Looks like theirs possibly a problem with your rewrite rule within your .htaccess (ungreedy or something?) paste the contents of your .htaccess within code tags within your next reply.
Hi! I Don't Think Your .htaccess File Is Empty :S Because You Are Using Something Wrong With RewriteRule In .htaccess You Can Use This Command To Set 404 Manually: Create config.php And Include In Every page. Where You Can Use This Command For Any Unwanted URL's. $chkURL = "http://" . $_SERVER["SERVER_NAME"] . $_SERVER["REQUEST_URI"]; if ($chkURL == "http://www.example.com/1230.php/1231.php") { header("HTTP/1.0 404 Not Found"); }