我有一个在线商店,并为我的商店支持多种语言。我用htaccess来控制我商店的网址。细节
domain.com/product-name
domain.com/de/product-name
domain.com/jp/product-name
现在,我在/ wordpress /文件夹中安装了wordpress,并在其中显示配置htaccess:
domain.com/features/post-title
今天,我已经安装了wpml.org,wordpress可以支持多种语言,但URL不能用于此。
domain.com/features/post-title (english)
domain.com/features/de/post-title (German)
domain.com/features/jp/post-title (Japanese)
我的问题是,网址如何显示如上网址。
最后,这是我的htaccess文件:
Options +FollowSymLinks -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteCond %{SCRIPT_FILENAME} !-d
RewriteRule ^(.+) index.php/$1 [E=VAR1:$1,QSA,L,PT]
RewriteRule ^features/?$ index.php?main_page=features[QSA,L]
RewriteRule ^features/.*$ index.php?main_page=features[QSA,L]
RewriteRule ^features\?(.*)$ index.php?main_page=features?$1 [QSA,L]