当前位置: 代码迷 >> PHP >> Rewrite Url求教!解决办法
  详细解决方案

Rewrite Url求教!解决办法

热度:566   发布时间:2012-04-15 18:39:21.0
Rewrite Url求教!
请问下如何写
/models.php?brand=apple实现/apple-notebook-c.html或者类似的静态URL的规则。在此谢过了

------解决方案--------------------
RewriteEngine on
 
RewriteRule (.*)-notebook-c.html models.php?brand=$1 [L]


ro-----------------------------

RewriteEngine on 
RewriteRule ^(.*)-notebook-c.html models.php?brand=$1 [L]
  相关解决方案