我改變了我的網站&的url結構。 現在我想重定向我的舊頁面(目前是404錯誤頁面)到我的主頁。htaccess重定向404頁面到index.php
網址:
http://www.example.com/abc-def-ghi-sp(m).html
到
http://www.example.com
我在htaccess的
RewriteEngine On
RewriteRule ^(.*)\.html$/[L,R=301]
以上規則工作正常使用下面的規則。 而且我還需要另一個redirection.But它不工作
http://www.example.com/page.php?name=amca&PID=143&PageID=abc
到
http://www.example.com
我已經使用htaccess的
RewriteRule ^page\.php/[L,R=301]
以下規則但結果
它顯示了主頁。
但在瀏覽器的URL是
http://www.example.com/?name=amca&PID=143&PageID=abc
我已經嘗試了不同的rule.But不工作
謝謝。它的工作正常。 – user2214646