我想從這里設定一個 301 重定向:
https://www.mydomain.tld/fr/amp/category/mypage.amphtml
到這里:
https://www.mydomain.tld/mypage
對于其他國家,我想保留語言,所以從這里重定向:
https://www.mydomain.tld/en/amp/category/mypage.amphtml
到這個:
https://www.mydomain.tld/en/mypage
現在我對第一部分有這些規則:
RewriteCond %{REQUEST_URI} ^fr/amp/category/(.*)$
RewriteRule ^(.*).amphtml$ /$1
RewriteRule ^fr/amp/category/(.*) /$1 [R=301,L]
但我有事情沒有按預期作業。我得到了這個結果: https://www.mydomain.tld/mypage.html
一些幫助或建議?
uj5u.com熱心網友回復:
最后我使用了這些簡單的規則:
RewriteRule ^fr/amp/category/(.*).amphtml$ https://www.mydomain.tld/$1 [R=301,L]
RewriteRule ^en/amp/category/(.*).amphtml$ https://www.mydomain.tld/en/$1 [R=301,L]
轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/473011.html
