如何删除此mod_rewrite代码中的(place-)前缀


How can I remove the (place-) prefix in this mod_rewrite code?

如何删除这个mod_rewrite代码中的(place-(前缀,因为它被附加到生成的每个url中,例如http://localhost/place-Srinagar.html而我希望它是http://localhost/Srinagar.html

RewriteRule ^place-(.*).html$ ./places_pro.php?url=$1

您的代码示例有点误导。如果你只想从所有URL的开头删除"place-",你可以这样做:

RewriteRule ^place-(.*)$ $1 [L]

[L]标记确保它是最后应用的重写规则。不会应用后续规则。