【发布时间】:2015-10-05 09:40:27
【问题描述】:
我有一个多语言网站(英语和德语),其 url 结构如下:
英文页面
http://example.com/index.php/http://example.com/index.php?lang=en_EN
http://example.com/about.php/http://example.com/about.php?lang=en_EN
http://example.com/contact.php/http://example.com/contact.php?lang=en_EN
德语页面
—
我希望将这些网址改写如下:
英文页面:
http://example.com/zh/index.php,……
德语页面:
http://example.com/de/index.php, ...
-
到目前为止我所拥有的是:
Options +FollowSymLinks
RewriteEngine on
RewriteRule /(.*)/(.*)\.php $2.php?lang=$1
但这根本没有任何作用……
【问题讨论】: