0
我在網站上的工作有兩個語言(法語&英文) 作爲爲例http://www.atelier-du-couteau.com是相同http://www.atelier-du-couteau.com/fr當選擇「FR」 prestshop接受URL沒有語言<br> exmple的Prestashop重定向到活動語言
我尋找一種強制Prestashop的方式來總是使用正確的語言。
我在網站上的工作有兩個語言(法語&英文) 作爲爲例http://www.atelier-du-couteau.com是相同http://www.atelier-du-couteau.com/fr當選擇「FR」 prestshop接受URL沒有語言<br> exmple的Prestashop重定向到活動語言
我尋找一種強制Prestashop的方式來總是使用正確的語言。
您可以編輯Prestashop .htaccess
文件。
# ~~start~~ Do not remove this comment[...]
之前添加此規則:
### REDIRECT TO /FR IF NO COUNTRY CODE ###
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/[a-z]{2}/.*
RewriteRule ^(.*)$ /fr/$1 [L,R=301]
</IfModule>
### /REDIRECT TO /FR IF NO COUNTRY CODE ###