0

.htaccess でいくつかの URL 書き換えを設定しようとしています。

1 つ目は、言語コードを使用して URL をリダイレクトすることです (サイトは 1 つの言語になりました)。

RewriteRule ^en/(.*)$ /$1 [R=301,L]
RewriteRule ^es/(.*)$ /$1 [R=301,L]

========================

2 つ目は、seo の目的でより説明的にすることです。

/コミュニティ/

/家庭教師と生徒/

RewriteCond %{REQUEST_URI} ^.*/community.*$
RewriteRule .*  /tutors-and-students    [L,R=301,DPI]

=================================

3 番目はプロファイルの URL を変更します。

/community/myprofile/ユーザー名

/tutors-and-students/username

RedirectMatch permanent myprofile(.*) http://www.profr.org/tutors-and-students/$1

=========================

それらはすべて独立して機能しますが、次のように一緒には機能しません。

RewriteRule ^en/(.*)$ /$1 [R=301,L]
RewriteRule ^es/(.*)$ /$1 [R=301,L]
RewriteCond %{REQUEST_URI} ^.*/community.*$
RewriteRule .*  /tutors-and-students    [L,R=301,DPI]
RedirectMatch permanent myprofile(.*) http://www.profr.org/tutors-and-students/$1

あなたのヒントに感謝します。

4

1 に答える 1

0

mod_alias からのリダイレクトと一緒に混合するのではなく、mod_rewrite に固執する必要があります。

RewriteRule ^en/(.*)$ /$1 [R=301,L]
RewriteRule ^es/(.*)$ /$1 [R=301,L]

RewriteRule ^.*/?community /tutors-and-students [L,R=301,DPI]

RewriteRule ^.*/?myprofile(.*)$ /tutors-and-students/$1 [L,R=301]
于 2013-10-02T18:44:50.890 に答える