我有一個網站,我只需要顯示主頁而不是實際的URL請求(網站正在進行中)。如何使用.htaccess將所有文件重定向到索引ReWriteEngine?
該域中的任何URL都應該被重寫爲index.html,並且只有index.html應該在整個網站中可見。
如何在我當前的腳本中編寫規則? 備註:我對SEO影響不感興趣。
RewriteEngine on
# SECURITY : Directory Listing denied
options -indexes
# UTILITY : Redirect WebMail
redirect permanent /email http://www.example.com:2095/3rdparty/roundcube/index.php?
RewriteCond %{HTTP_HOST} ^example\.com$ [OR]
RewriteCond %{HTTP_HOST} ^www\.example\.com$
RewriteRule ^/?$ "http\:\/\/www\.example\.com\/" [R=301,L]
我試過這個RewriteRule ^。+ $ /index.php [L]但不起作用 – GibboK 2015-02-07 09:21:33