Home > Backend Development > PHP Tutorial > nginx怎么访问不了html文件?

nginx怎么访问不了html文件?

不言
Release: 2023-02-28 12:38:01
Original
8608 people have browsed it

nginx访问不了html文件的解决办法:首先打开“nginx.conf”文件;然后配置工程目录,代码如“root "D:\site";index index.html index.htm;”;最后启动nginx即可运行html文件。

nginx怎么访问不了html文件?

nginx怎么访问不了html文件?

在启动nginx之前,打开nginx.conf配置一下你的工程目录,比如:

server {
listen 8000;
server_name saveimage alias another.alias;
location / {
autoindex on;
root "D:\site";
index index.html index.htm;
}
}
Copy after login

然后启动nginx就可以运行html了;

2、Nginx ("engine x") 是一个高性能的 HTTP 和 反向代理 服务器,也是一个 IMAP/POP3/SMTP 服务器。

3、Nginx是一款轻量级的Web 服务器/反向代理服务器及电子邮件(IMAP/POP3)代理服务器,并在一个BSD-like 协议下发行。由俄罗斯的程序设计师Igor Sysoev所开发,供俄国大型的入口网站及搜索引擎Rambler(俄文:Рамблер)使用。其特点是占有内存少,并发能力强,事实上nginx的并发能力确实在同类型的网页服务器中表现较好,中国大陆使用nginx网站用户有:百度、新浪、网易、腾讯等。

更多相关知识,请访问PHP中文网

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template