环境:阿里云
centos+lnmp
访问 http://www.abc.com/index.php/A/B/C
的时候,会提示说
无法加载模块:Index.php
错误位置
FILE: /Data/test/releases/20160824-150226/ThinkPHP/Library/Think/Dispatcher.class.php LINE: 178
nginx配置
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
求解