hhxsv5 / laravel-s

LaravelS is an out-of-the-box adapter between Laravel/Lumen and Swoole.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

按照文档配置nginx完成后访问index.php还是会变成下载

singi2016cn opened this issue · comments

commented

参照 https://github.com/hhxsv5/laravel-s/blob/master/README-CN.md 配置 nginx 后,访问index.php还是会变成下载。
打开下面的配置也没用

# 当请求PHP文件时直接响应404,防止暴露public/*.php
location ~* \.php$ {
   return 404;
}
commented

修改index.php成aaaaaa.php,然后再改回就正常了。 = =!

使用swoole后不应该访问任何.php文件(除非你laravel里有/index.php这样的路由),index.php是针对fpm的产物。