Nginx重定向的配置实例

时间:2016-09-25
在/usr/local/nginx/conf/nginx.conf中:

server

{

...

##begin add by guozhenbin 20100727
location /b2c/
{
if (!-e $request_filename) {
rewrite ^/b2c/(.*)$ /b2c/index.php?$1 last;
}
}
##end add by guozhenbin 20100727

...

}

/usr/local/nginx/sbin/nginx -s reload

重启无效。



后来将b2c/去掉,OK了。
上一条:让Apache支持Rewrite静态页面重写的方法 下一条:Apache 多端口多站点配置方法

相关文章

最新文章