Home > Backend Development > PHP Tutorial > 伪静态 url 重写解决办法

伪静态 url 重写解决办法

WBOY
Release: 2016-06-13 12:55:19
Original
741 people have browsed it

伪静态 url 重写
xinwen.php?id=5    改成  xinwen-5.html    
product.php?id=5    改成  product-5.html 

1.正则表达式该怎么写?


2.我已经采用了samrty静态模板,不知道规则会不会有所不同......

url 正则表达式 smarty模板? 重写规则
------解决方案--------------------
找个正则测试工具试试么,真懒,不过我还是回正经的

RewriteCond %{QUERY_STRING} ^(.*)$
RewriteRule ^(.*)xinwen-(.+)\.html$ $1/xinwen.php?id=$2


------解决方案--------------------
伪静态是在IIS还是APACHE里面?

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template