0

我在重定向方面遇到了麻烦。

我有 /confs/2014/[month]/[city]/[shortname]/ 例如:

     /confs/2014/06/london/icamme/
     /confs/2014/09/paris/icadd/
     /confs/2014/10/losangles/icamad/

我有 12 个月,80 个城市,许多短名称,在它们下面有真正的 html 文件。我想将它们重定向到 php sys. php 期望的格式为

/conf/2014/[month]/[city]/[shortname]/

我在下面试过这个

RewriteRule ^conferences\/2014\/(.*) conference/2014/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?path=$1 [L,QSA]

但它不会重定向

4

0 回答 0