0
我使用WPML來翻譯我的Wordpress網站,我不想使用Jquery語言重定向但使用htaccess。htaccess語言重定向與手動語言選擇器
http://example.com是默認EN版本
的問題是,當你重定向到/德/你不能手動導航到EN版本。
這裏是我的代碼
## Language Detection
#The 'Accept-Language' header starts with 'de'
#and the test is case-insensitive ([NC])
RewriteCond %{HTTP:Accept-Language} ^de [NC]
#If not already redirected
RewriteCond %{REQUEST_URI} !^/de/ [NC] # ADDED
#Redirect user to /de/ address
#sending 301 (Moved Permanently) HTTP status code
RewriteRule ^$ /de/ [L,R=301]
#For every other language use English
RewriteRule ^$ - [L] # MODIFIED