Home > Topics > Pagoda Panel > What should I do if the newly added website on the Pagoda Panel cannot be accessed (local environment)

What should I do if the newly added website on the Pagoda Panel cannot be accessed (local environment)

藏色散人
Release: 2019-11-11 11:58:41
forward
13024 people have browsed it

下面由宝塔安装教程栏目给大家介绍本地环境宝塔面板新增网站访问不了的解决办法希望对需要的朋友有所帮助!

What should I do if the newly added website on the Pagoda Panel cannot be accessed (local environment)

前言:

1、将宝塔面板软件安装好后,配置IIS、数据库、PHP环境(TP5.0支持PHP5.4等于或大于)

2、按照步骤创建网站,本地若如果不能正常访问,证明本系统中hosts文件未加入

举个栗子:

127.0.0.1 wzweb.com
Copy after login

hosts文件位置如下:

C:\Windows\System32\drivers\etc
Copy after login

如若取消时,在配置行前加上#

3.如果是tp5 那么请你伪静态一下

What should I do if the newly added website on the Pagoda Panel cannot be accessed (local environment)

代码如下:

location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}
Copy after login

The above is the detailed content of What should I do if the newly added website on the Pagoda Panel cannot be accessed (local environment). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
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