.htaccess to forward url and exclude one page
How to开发者_如何学JAVA write a .htaccess that has in result:
ALL Requests on that domain go forwarded to the index.html at the rootfolder of the same domain.
The index.html itself is not forwarded (excluded) as it includes 2 outbound links.
thanks chris
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/?index\.php
RewriteRule /?(.*) index.html [L]
精彩评论