我知道如何重写一个多元语言网站的网址?
如果未应用重写配置,我有此网址
boutique/index.php (default language en)
boutique/index.php?language=fr
boutique/index.php?Products&Description&products_id=20
当应用重写配置时,我有这个网址
boutique/index.php (default language en)
boutique/index.php/language,en
boutique/index.php/language,fr
boutique/index.php/Products/Description/products_id,20
我尝试过但不行。
RewriteBase /
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule .* - [L]
RewriteRule ^([^/]+)/([^.]+)\.php /$2.php/language=$1 [L,NC,QSA]