使用.htaccess从URL中删除一部分

时间:2011-04-16 07:21:18

标签: php .htaccess

http://www.safi.com/front/property/property_detail.php?pid=12? 

我想删除front/property。这应该是

http://www.safi.com/property_detail.php?pid-12. 

我正在写下代码:

Options +FollowSymLinks
RewriteEngine On
RewriteRule ^([a-zA-Z0-9\-]+)/([a-zA-Z0-9\-]+)/propertydetail/([a-zA-Z0-9\-]+)$ propertydetail.php?pid=$3

请帮帮我..........

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:1)

你试过(未经测试)

Options +FollowSymlinks
RewriteEngine On
RewriteRule ^front/property/(.*) /$1