|
User index.php (or another script) to handle requests to no existing files on your apache web server.
Insert the code in your .htaccess file in your web root directory.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-F
RewriteRule .$ index.php
Sign up to add your own comment here!
Comments
|
|
You can accomplish the same thing without mod_rewrite:
ErrorDocument 404 /path/to/file |
|
|
hi region..
ur article help for me... |
More comments: 1
|
|