语言重定向来自GET参数htaccess

时间:2013-08-30 08:42:53

标签: .htaccess

我有这个代码,它将www.example.com?index.php?q=home&lang=en重新导入www.example.com/home。我想将其重定向到www.example.com/en/home。有可能吗?

RewriteEngine On
RewriteBase /
RewriteRule ^(.*)$ index.php?q=$1&lang=$2 [L,QSA]
RewriteRule ^([^/]*)(.*)$ $1[L,QSA]

提前致谢

1 个答案:

答案 0 :(得分:0)

尝试:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([a-z]{2})/(.*)$ /index.php?q=$2&lang=$1 [L,QSA]