Use something like this:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !index.html
RewriteRule /* /index.html [L]
- 0 Users Found This Useful
Related Articles
How do I turn Directory Indexing off?
Add the following to .htaccess:Options -IndexesTurn it back on:Options +Indexes
How can I setup dynamic/custom error pages?
If you have defined your own custom Error Pages using the "Define Error Pages" tool within the...
How do I stop off-line browsers/ robot surfers?
Try the following in .htaccess:RewriteEngine OnRewriteCond %{HTTP_USER_AGENT} ^MozillaRewriteRule...
How do I prevent spam from email harvestering?
Use the following in .htaccess:RewriteEngine onRewriteCond %{HTTP_USER_AGENT} ^Bullseye.*...
How do I block a specific domain?
Add the following to .htaccess:order allow,denydeny from fraudster.comallow from all(Change...