hhxsv5 / laravel-s

LaravelS is an out-of-the-box adapter between Laravel/Lumen and Swoole.
MIT License
3.82k stars 471 forks source link

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

Closed singi2016cn closed 1 year ago

singi2016cn commented 1 year ago

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

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

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

hhxsv5 commented 1 year ago

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