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

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

i want to remove front/property. This should be

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

And i am writing below code :

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

Please help me..........

did u try ( not tested)

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