1

local.maalumaalu という仮想ホストがあります。htaccess には 301 リダイレクト ルールがたくさんあります。私の問題は、次のようなルールがある場合です

リダイレクト 301 /special-offers local.maalumaalu/special-offers.html

それで

local.maalumaalu/special-offers/free-child.html

にリダイレクトされます

local.maalumaalu/special-offers.htmlfree-child.html

これは「ページが見つかりません」です。助言がありますか?

4

1 に答える 1

0

RedirectMatchの代わりに使用しRedirectます。RedirectMatchサポートがありregexます:

RedirectMatch 301 ^/special-offers/?$ local.maalumaalu/special-offers.html

または、mod_rewrite を使用する場合:

RewriteEngine On
RewriteRule ^special-offers/?$ /local.maalumaalu/special-offers.html [L,R=301,NC]
于 2013-10-21T11:30:39.530 に答える