首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

nginx下配置url重写!解决思路

2012-04-24 
nginx下配置url重写!hostname/infor/index.php?qssqhostname/ssq_index.html我想把上面的url重写成下面的

nginx下配置url重写!
hostname/infor/index.php?q=ssq
hostname/ssq_index.html
我想把上面的url重写成下面的形式,谢谢大家!

[解决办法]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^([0-9_a-z]+)_index.html$ infor/index.php?q=$1 [L,R=301]
</IfModule>

仅供参考
[解决办法]
RewriteEngine On
RewriteRule ^(.*)_index.html$ /infor/index.php?q=$1 [L]

热点排行