0
我爲我的網站設置了適合搜索引擎優化網址的設置,它的工作正確。但是當我需要設置一些301重定向它效果不佳。當我在Redirect 301 /example1 /example2
以下的地址欄中輸入該規則時,我得到www.domain.com/example2?page=example1
。我該如何改變它?如何糾正設置重寫規則?
RewriteEngine on
RewriteRule ^([^/.]+)/?$ index.php?page=$1 [L]
RewriteCond %{HTTPS} !=on
RewriteRule^https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
Redirect 301 /example1 /example2
你想發送example2到index.php嗎? –