WordPress-wp-config.php不存在

时间:2019-01-18 20:30:29

标签: wordpress

我有一个网站,当我尝试连接到url时,它会将我定向到<div fxFlex *ngIf="designs" [@expand]> <div fxLayout="column" fxLayout.gt-sm="row" style="display: inline" *ngFor="let design of designs"> <div fxFlex="30"> <mat-card> <mat-card-header> <mat-card-title> <h2>{{design.label}}</h2> </mat-card-title> <mat-card-subtitle> <h3>{{design.time}}hr</h3> </mat-card-subtitle> </mat-card-header> <img mat-card-image src="{{BaseURL + design.image}}"> <mat-card-content> <p>{{design.description}}</p> </mat-card-content> <mat-card-actions style="margin: auto;"> <button mat-stroked-button routerLink="/contact" color="primary">Book Now</button> </mat-card-actions> </mat-card> </div> </div> </div> ,而当我导航到public_html时,找不到wp-config.php文件。

我必须补充一点,site-url/wp-admin/setup-config.php中添加了一些installer*.php文件。

在不重定向到public_html文件的情况下如何连接到网站?

1 个答案:

答案 0 :(得分:1)

当wordpress在您的网站根目录中找不到site-url/wp-admin/setup-config.php文件时,您将重定向到wp-config.php

您可以从标准wordpress随附的示例文件中手动创建wp-config.php。其名称为wp-config-sample.php。只需将其重命名为wp-config.php即可 编辑以下几行以反映您的数据库设置:

define('DB_NAME', 'database_name_here');

define('DB_USER', 'username_here');

define('DB_PASSWORD', 'password_here');

define('DB_HOST', 'localhost');

有关wp-config.php here

的更多详细信息

如果您没有wp-config-sample.php文件,则可以从最新的wordpress存档here中获取文件