2014-11-03 57 views

回答

1

您可以在DOCUMENT_ROOT/.htaccess文件中使用此代碼:

DirectoryIndex index.html 
RewriteEngine On 

RewriteCond %{THE_REQUEST} /index\.html [NC] 
RewriteRule ^(.*?)index\.html$ /$1 [L,R=302,NC,NE] 

還要注意的是http://example.com/http://example.com用於web服務器和瀏覽器相同的URL。瀏覽器甚至發送請求到網絡服務器從而http://example.com/http://example.com

之前通常剝離斜線
相關問題