💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
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