ユーザーが「en」または「fr」で始まらないURL を入力した場合、ユーザーをホームページにリダイレクトしたいと考えています。私はこれを機能させるために何時間も費やしましたが、これは私の壊れやすい初心者の脳には難しすぎることがわかりました. 現在、私が行こうとすると
http://mysite.com/fr/produits/
Firefox から、リダイレクトが完了しないと表示されます。
これが私が欲しいものです:
http://mysite.com/en/whatever/ ==> rewrite as /whatever/index.php?lang=en
http://mysite.com/fr/whatever/ ==> rewrite as /whatever/index.php?lang=fr
http://mysite.com/jp/whatever/ ==> 301 redirect to /fr/accueil/
http://mysite.com/whatever/ ==> 301 redirect to /fr/accueil/
これが私の現在のhtaccessです。詳細については、インライン コメントを参照してください。
Options +FollowSymLinks
RewriteEngine On
RewriteBase /
# Require no www
RewriteCond %{HTTP_HOST} !^mysite\.com$ [NC]
RewriteRule ^(.*)$ http://mysite.com/$1 [R=301]
# Redirect from root to /fr/accueil/, the URL for the default home page
RewriteRule ^/$ http://mysite.com/fr/accueil/ [NC,R=302]
# Rewrite language path fragment (/fr or /en) as a parameter
RewriteRule ^fr/accueil/$ /accueil/index.php?lang=fr [QSA,NC]
RewriteRule ^en/home/$ /accueil/index.php?lang=en [QSA,NC]
RewriteRule ^fr/produits/$ /produits/index.php?lang=fr [QSA,NC]
RewriteRule ^en/products/$ /produits/index.php?lang=en [QSA,NC]
# I'm aware that the rules in this htaccess are re-examined each
# time a rewrite is issued. So the 'fr/accueil/' I'm redirecting to
# will itself be rewritten as /accueil/index.php?lang=fr. That is
# why I'm providing 3 conditions:
# If URI does not start with 'en' AND
# If URI does not start with 'fr' AND
# If QUERY_STRING is not exactly 'lang'
RewriteCond %{REQUEST_URI} !^en/.*$
RewriteCond %{REQUEST_URI} !^fr/.*$
RewriteCond %{QUERY_STRING} !^lang$
RewriteRule ^.*$ fr/accueil/ [NC,R=301]
私を不幸から解放してください。乾杯!