apache怎么写rewrite将.com/plus/view.php?aid=1改成.com/art-1.html
在网站根目录下新建一个
.htaccess 文件
内容如下<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule (.)/art-(\d+).html$ /plus/view.php?aid=$2
</IfModule>
记得要开启rewrite 模块
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule (.
)/art-(\d+).html$ /plus/view.php?aid=$2</IfModule>
版权所有:中维网
文章标题:apache怎么写rewrite将***.com/plus/view.php?aid=1改成***.com/art-1.html
文章链接:http://www.chinafix.net/?post=102
本站文章均为原创,未经授权请勿用于任何商业用途
文章标题:apache怎么写rewrite将***.com/plus/view.php?aid=1改成***.com/art-1.html
文章链接:http://www.chinafix.net/?post=102
本站文章均为原创,未经授权请勿用于任何商业用途
发表评论