.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
あなたのヒントに感謝します。