0

http://onlifestyle.org/(DIRECTORY)/category/postの形式のすべてのリンクを書き換えて、ブラウザーに http://onlifestyle.org/catogory/post の形式で表示する必要がありますが、それでもhttp://onlifestyle.org/(DIRECTORY)/category/postでリソースをヒット ありがとう

4

1 に答える 1

1

内部的に次のようにリダイレクトhttp://onlifestyle.org/catogory/posthttp://onlifestyle.org/directory/catogory/postます:

RewriteRule ^category/post/?$ /directory/category/post [L]

URL を から に変更しhttp://onlifestyle.org/directory/catogory/postますhttp://onlifestyle.org/catogory/post

RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s/+directory/category/post/? [NC]
RewriteRule ^ /category/post [R=302,L]

すべてが機能する場合は、必要に応じて 302 を 301 に変更します。

于 2013-07-28T04:22:37.787 に答える