nginx 伪静态的设置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 伪静态的设置相关的知识,希望对你有一定的参考价值。
以下操作实现当用户访问 www.tetuhao.com/link.html 时,显示的是www.tetuhao.com/shop/index.php?act=link 的内容。同时网址显示的仍是www.tetuhao.com/link.html
一:vim /usr/local/nginx/conf/nginx.conf
在server块中加入以下内容
location / {
rewrite ^(.*)/link\.html$ $1/shop/index.php?act=link last;
}
二:检查配置文件 /etc/init.d/nginx configtest
三:重新加载nginx /etc/init.d/nginx reload
本文出自 “夜读才子盼女鬼” 博客,请务必保留此出处http://more3.blog.51cto.com/9929586/1744985
以上是关于nginx 伪静态的设置的主要内容,如果未能解决你的问题,请参考以下文章