【发布时间】:2011-08-25 18:20:02
【问题描述】:
我的网页上有多种语言。以下是链接示例:
http://myweb.com/en/page_load/about_us
http://myweb.com/en/page_load/testing
http://myweb.com/de/page_load/about_us
http://myweb.com/de/page_load/testing
我想像这样缩短它:
http://myweb.com/en/about_us
http://myweb.com/en/testing
http://myweb.com/de/about_us
http://myweb.com/de/testing
目前我的 .htaccess 文件中有这个:
RewriteEngine On
RewriteCond $1 !^(index\.php|images|public|css|blogg|img|captcha|robots\.txt|sitemap.xml|resources)
RewriteRule ^(.*)$ /index.php/$1 [L]
有什么建议吗?
【问题讨论】:
-
您想合并这两个规则,或者您在
.htaccess中的内容只是您建议的工作的初步尝试?
标签: apache codeigniter mod-rewrite