将URL中的文化参数作为路径

时间:2014-02-03 05:53:23

标签: apache .htaccess mod-rewrite url-rewriting

尝试修改.htaccess文件以允许URL将区域和语言信息指定为路由,并将请求转换为查询字符串参数。

Exmple
domain / us / en - >域/ index.html的REG = EN&放大器; LAN = US
domain / ca /​​ fr - >域/ index.html中REG = CA&安培; LAN = FR

有什么想法吗?

1 个答案:

答案 0 :(得分:0)

将此代码放入DOCUMENT_ROOT/.htaccess文件中:

RewriteEngine On
RewriteBase /

RewriteRule ^(\w+)/(\w+)/?$ /index.html?reg=$2&lan=$1 [L,QSA]