如何编写我的htaccess代码来重写多国和语言
我是htaccess的一周。现在我的公司想要设计一个多国家和语言设置的商业网站。
需要帮助。
http://ca.hello.com/en
=>
http://www.hello.com/?country=ca&language=en
------------------------
http://ca.hello.com/en/help.html
=>
http://www.hello.com/index.php?main_page=help&country=ca&language=en
答案 0 :(得分:1)
我没有测试它,但尝试这个并让我知道它是否不起作用
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^([^.]+)\.hello\.com
RewriteRule ^(.*)/?(.*)?[.html]$ http://www.hello.com/index.php?main_page=$2&country=%1&language=$1 [L]