【发布时间】:2014-10-14 05:04:02
【问题描述】:
我有以下网址:
http://example.com/files/101-info/index.php
我的问题是:
- 是否可以去掉url中的101-?
- 是否可以重写地址栏中的名称,但将文件保留在当前位置?
我想让文件显示在:
http://example.com/files/info/index.php
但实际上留在:
/var/www/htdocs/files/101-info/index.php
这是我尝试过的,但我无法删除 101- 并且重定向不起作用:
RewriteEngine On
RewriteRule ^([^/]+)/([0-9]+)-([^\/]+)/(.+)\.php$ /$1/$2/$4 [R] // also tried [NC,QSA]
【问题讨论】:
标签: php regex .htaccess mod-rewrite