码迷,mamicode.com
首页 > Web开发 > 详细

[解决]ThinkPHP在Nginx下添加新模块访问不正常

时间:2017-10-06 20:04:33      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:好的   伪静态   访问   think   服务器   thinkphp   ast   index   efault   

在本地测试好好的,传到服务器就是403拒绝。经过各种测试,问题是分2步解决的:

1、注册新的模块,在Application\Common\Conf\config.php下,添加以下配置:

‘DEFAULT_MODULE‘ => ‘Home‘,
‘MODULE_ALLOW_LIST‘ => array(‘Home‘,‘Free301‘),

2、配置Nginx伪静态规则(Apache的.htaccess妥妥无效)

添加以下代码:

location / {
root /var/www;
index index.html index.htm index.php;
if (!-e $request_filename) {
rewrite ^/index.php(.*)$ /index.php?s=$1 last;
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}

------------------

完美解决

[解决]ThinkPHP在Nginx下添加新模块访问不正常

标签:好的   伪静态   访问   think   服务器   thinkphp   ast   index   efault   

原文地址:http://www.cnblogs.com/yanjibao/p/7632325.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!