在根目录运行thinkphp的ngnix上绑定通过访问/#/可以看到的vue-cli
时间: 2023-12-08 20:05:54 浏览: 85
nginx部署vue项目
5星 · 资源好评率100%
在nginx上配置根目录绑定thinkphp的方法是,在nginx的配置文件中设置root参数指向thinkphp的根目录,同时在location中设置访问路径为“/”,例如:
```
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html/thinkphp/;
index index.php;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
```
这样配置后,当访问根目录时就会自动调用thinkphp的入口文件index.php进行处理。
阅读全文