企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
Nginx新配置的域名出现“404 Not Found”问题的处理方式: 找到配置文件conf文件在 ``` location / { ``` 下加入: ``` if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; } ``` 如下图: ``` server { listen 80; server_name n.tp5.com; root "C:/phpstudy_pro/WWW/n.tp5.com/public"; location / { if (!-e $request_filename) { rewrite ^/(.*)$ /index.php/$1 last; break; } ``` 之后重新启动Nginx