我們在我們的網站上有重複的頁面,我們需要重定向任何以index.html結尾爲非index.html的頁面;使用htaccess重定向刪除index.html
/van-insurance/pick-up-insurance.html 301重定向到 /麪包車保險/回升保險
/van-insurance/private.html 301重定向到 /麪包車 - 保險/私人
這是什麼htaccess代碼?
我們在我們的網站上有重複的頁面,我們需要重定向任何以index.html結尾爲非index.html的頁面;使用htaccess重定向刪除index.html
/van-insurance/pick-up-insurance.html 301重定向到 /麪包車保險/回升保險
/van-insurance/private.html 301重定向到 /麪包車 - 保險/私人
這是什麼htaccess代碼?
這應該是足夠了:
RewriteEngine On
RewriteRule ^(.+)\.html$ http://www.domain.com/$1 [L,R=301]
這應該做的伎倆:
RedirectMatch 301 ^(.*)\.html $1
文檔:http://httpd.apache.org/docs/2.2/mod/mod_alias.html#redirectmatch
這恐怕什麼也沒做? –