我有这样的网址如下:
http://www.mylink.com/property?id=34455
是什么规则将其重写为以下形式而不会破坏 css或任何东西。我看到它在多个网站上完成
http://www.mylink.com/property/3455
我已经尝试了
RewriteRule ^property/?$ property.php [NC,L]
答案 0 :(得分:1)
如果要重新转移到http://www.mylink.com/property/3455
的网址为http://www.mylink.com/property.php?id=34455
(请注意属性后面的“ .php ”),规则可能是以下规则:
RewriteRule ^property/([0-9]+)$ property.php?id=$1
测试您的规则