0

私はpatientsというフォルダにサイトを持っていて、私のURLは次のようになっています。

http://site.com/patients/ post-name

http://site.com/patients/articles/ another-post-name

それらすべてをクリーンにリダイレクトしたい:

http://newsite.com/ post-name

http://newsite.com/ another-post-name

つまり、時々表示される/ articles /を失い、新しいサイトに301を失います。

htaccessでこれを行う方法について何か助けはありますか?

4

1 に答える 1

1

http://site.comサーバーで.htaccessを編集し、これを配置します(最初のルールである必要があります)。

RewriteEngine On

RewriteRule .* http://newsite.com/ [R=301]

また

Redirect 301 / http://newsite.com/

よろしく。

于 2013-01-03T15:17:56.190 に答える