有人可以提供一個.htaccess規則,以便我的index.php覆蓋我的index.html?htaccess規則使index.php服務,而不是index.html當轉到http:// localhost
這意味着index.php,而不是index.html,當我去http://localhost
服務。
有人可以提供一個.htaccess規則,以便我的index.php覆蓋我的index.html?htaccess規則使index.php服務,而不是index.html當轉到http:// localhost
這意味着index.php,而不是index.html,當我去http://localhost
服務。
這可工作,而不是...
RewriteEngine On
RewriteBase/
RewriteRule ^index.html$ index.php [R=301,L]
這將做的工作:
DirectoryIndex index.php index.html
如果沒有的index.php index.html文件將被替代服務。
在Apache配置文件(或htaccess的),設置的DirectoryIndex到index.php代替的index.html
在此,是一個例子: http://www.javascriptkit.com/howto/htaccess6.shtml
感謝GoldenNewby – 2012-02-20 23:26:01
這是正確的做法。如果將可能存在明確鏈接到index.html的網站遷移,那麼也要執行RewriteRule。 – 2012-02-21 06:04:24