-1
我需要使用.htaccess
來重定向所有包含index.asp
的頁面嗎?查詢到主頁。301從所有index.asp重定向?查詢到主頁
例如:
index.asp?currentPage=1411&cat2=seating
感謝
我需要使用.htaccess
來重定向所有包含index.asp
的頁面嗎?查詢到主頁。301從所有index.asp重定向?查詢到主頁
例如:
index.asp?currentPage=1411&cat2=seating
感謝
試試這個在.htaccess
文件:
Redirect 301 /index.asp http://example.com
三江源這個沒有工作的重定向。唯一的問題是它將查詢保存在URL中,這會導致重複的內容問題。 是否有可能在URL之後重定向並刪除?查詢? –
管理修復這與重寫代碼 'RewriteRule^index.asp http://www.example.co.uk/? [L,R = 301]' 感謝您的幫助 –