|
本帖最后由 cxzlr 于 2012-4-10 09:56 编辑
NGINX 中 以下语句可以去 index.php 如www.test.com/index.php/home
在访问时,可以写成 www.test.com/home nginx 自动去掉 index.php
rewrite ^/(?!index\.php|robots\.txt|bbs|public)(.*)$ /index.php/$1 last;
我现在想去掉 http://www.test.com/index.php/news/info/32 中的 index.php/news
想直接输入 www.test.com/info/32 就直接打开新闻
求解nginx 中 rewrite 如何写。
|
|