server {listen 80;server_name config.xxxx.com;access_log /data/nginx/logs/config.xxxx.com/config.xxxx.com.log main;location / {root /data/www/config;index index.php;}location ~ \.php$ {root ...
server {
listen 80;
server_name config.xxxx.com;
access_log /data/nginx/logs/config.xxxx.com/config.xxxx.com.log main;
location / {
root /data/www/config;
index index.php;
}
location ~ \.php$ {
root /data/www/config;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
###################################
###################################
我之前没有加“ location / ”出现如上图所示的问题,访问域名出现nginx欢迎界面,然后域名后面加上index.php虽然出现的登陆界面,但是明显感觉有很多js,html等等文件没有加载出来。
然后我领导告诉我“ location ~ .php$ “ location只匹配后缀为.php的文件,js,html等文件是找不到的,所以大哥要碟不。
本文标题为:nginx配置php站点代理
基础教程推荐
- laravel 解决多库下的DB::transaction()事务失效问题 2023-03-08
- 在Laravel中实现使用AJAX动态刷新部分页面 2023-03-02
- 使用PHP开发留言板功能 2023-03-13
- PHP获取MySQL执行sql语句的查询时间方法 2022-11-09
- PHP命名空间简单用法示例 2022-12-01
- PHP实现Redis单据锁以及防止并发重复写入 2022-10-12
- laravel ORM关联关系中的 with和whereHas用法 2023-03-02
- php array分组,PHP中array数组的分组排序 2022-08-01
- thinkphp3.2.3框架动态切换多数据库的方法分析 2023-03-19
- PHP中的错误及其处理机制 2023-06-04