您好,我的网站应该有多种语言版本。我用wordpress制作了它。我想要实现的是每种语言都有自己的(虚拟)子域。例如,fr.foo.eu和nl.foo.eu。
目前我的网址格式如下: foo.eu/?lang=nl foo.eu/?lang=fr
例如,网址中可能包含更多内容: http://hypnose.eu/hallo-wereld/?lang=nl
我想使用htaccess以下列方式获取我的网址:
http://nl.hypnose.eu/hallo-wereld/
你们可以帮助我实现这一目标。
以下是我目前在.htaccess中所拥有的内容:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^([a-z]{2}\.hypnose\.eu$ [NC]
RewriteCond %{THE_REQUEST} \ /+([^\?]*)\?lang=([a-z]{2})&?([^\ ]*)
RewriteRule ^ http://%2.hypnose.eu/%1?%3 [L,R]
RewriteCond %{QUERY_STRING} !(^|&)lang=
RewriteCond %{HTTP_HOST} ^([a-z]{2})\.hypnose\.eu$ [NC]
RewriteRule ^(.*)$ /$1?lang=%2 [L,QSA]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
答案 0 :(得分:3)
尝试添加,高于您的wordpress规则:
RewriteCond %{HTTP_HOST} !^([a-z]{2})\.foo\.eu$ [NC]
RewriteCond %{THE_REQUEST} \ /+([^\?]*)\?lang=([a-z]{2})&?([^\ ]*)
RewriteRule ^ http://%2.foo.eu/%1?%3 [L,R]
RewriteCond %{QUERY_STRING} !(^|&)lang=
RewriteCond %{HTTP_HOST} ^([a-z]{2})\.foo\.eu$ [NC]
RewriteRule ^(.*)$ /$1?lang=%1 [L,QSA]
答案 1 :(得分:0)
有多语言的热门单词新闻插件,它为当前语言的URL设置
1)qTranslate X
2)qTranslate
在插件中尝试预域模式。