如何写我的htaccess代码重写多国和语言


how to write my htaccess code to rewrite multi country and language

如何编写我的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

我没有测试它,但尝试这个,让我知道,如果它不工作

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]