2

リストがかなり長くなっているので、htaccess ファイルの次のルールをクリーンアップするための簡単なヘルプが必要です。

これは、サイトが移動した後に発生し、以前/browse/author/NAME-HERE/by/NAME-HERE.

確かに、これらまたは何かをパターンマッチする方法はありますか?

Redirect /browse/author/some-person /by/some-person
Redirect /browse/author/another-person /by/another-person
Redirect /browse/author/some-other-person /by/some-other-person
Redirect /browse/author/yet-more /by/yet-more
Redirect /browse/author/ /

/browse/author/可能であれば、ルートへのリダイレクトを維持したいのですが...

助けてくれてありがとう!

4

1 に答える 1

2

これは間違いなく mod_rewrite で可能です。

mod_rewrite と .htaccess を有効にしてからhttpd.conf、このコードをディレクトリの.htaccess下に配置します。DOCUMENT_ROOT

Options +FollowSymLinks -MultiViews
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

RewriteRule ^/?browse/author/(.*) /by/$1 [L,R=301,NC]
于 2013-08-01T11:16:58.603 に答える