在已有的Wordpress中安装另一个Wordpress时出错

时间:2018-06-12 14:59:52

标签: php wordpress configuration installation bluehost

我读过可能有两个Wordpress安装,一个安装在另一个安装中。具体来说,我在我的根位置有一个第一个Wordpress站点:

https://wpsite1.com

(当我购买他们的托管空间时,这个安装由托管服务Bluehost自动完成)。然后我创建了一个子目录并手动安装了另一个Wordpress:

https://wpsite1.com/wpsite2

.htaccess的{​​{1}}文件如下所示:

wpsite1.com

新的第二次安装 # Use PHP5.6 as default # AddHandler application/x-httpd-php56 .php # BEGIN WordPress AddHandler application/x-httpd-ea-php70 .php <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access plus 6 hours" ExpiresByType image/jpeg "access plus 6 hours" ExpiresByType image/gif "access plus 6 hours" ExpiresByType image/png "access plus 6 hours" ExpiresByType text/css "access plus 6 hours" ExpiresByType application/pdf "access plus 1 week" ExpiresByType text/javascript "access plus 6 hours" ExpiresByType text/html "access plus 10 minutes" ExpiresByType image/x-icon "access plus 1 year" ExpiresDefault "access plus 3 hours" </IfModule> Header set X-Endurance-Cache-Level "2" <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress # php -- BEGIN cPanel-generated handler, do not edit # Set the “ea-php70” package as the default “PHP” programming language. <IfModule mime_module> AddType application/x-httpd-ea-php70 .php .php7 .phtml </IfModule> # php -- END cPanel-generated handler, do not edit 的{​​{1}}文件如下:

.htaccess

如您所见,子目录存在于/wpsite2# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wpsite2/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wpsite2/index.php [L] </IfModule> # END WordPress 中。但是,如果我访问这两个位置,我现在收到以下错误:

  

&#34;文件&#39; wp-config.php&#39;已经存在。如果你需要重置任何一个   此文件中的配置项,请先删除它。你可以   尝试立即安装。&#34;

,状态代码为RewriteBase

enter image description here

解决方案是什么?

1 个答案:

答案 0 :(得分:0)

我认为您需要在另一个目录中安装另一个wordpress实例。

您需要在根目录中创建一个名为&#34; wpsite2&#34;的文件夹。并需要在其中安装第二个wordpress实例。你需要将数据库映射到它。

然后您就可以访问https://wpsite1.com/wpsite2

最好与bluehost的支持团队联系或聊天。

你可以参考这个。

Create subdomain

上面提到的东西是另一个wordpress安装。

如果你想在同一个wordpress安装中使用两个wordpress实例,你可以参考&#34; 多站点&#34;在wordpress。

Multisite example