已删除并重新安装WordPress,重定向现在已损坏

时间:2013-08-23 作者:RRN

我刚刚删除并重新安装了wordpress,我想有些事情搞砸了。。

现在,当我输入URL时,例如“test123.com”,没有加载任何内容。。

根文件夹中的“.htaccess”文件为空。

“index.php”的内容如下:

<?php
/**
 * Front to the WordPress application. This file doesn\'t do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */

/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
define(\'WP_USE_THEMES\', true);

/** Loads the WordPress Environment and Template */
require(\'./wordpress/wp-blog-header.php\');
?>
现在wordpress安装在“/wdps”文件夹中。

还有,这是他们的权限设置,有什么问题吗??

/.htaccess:https://www.evernote.com/shard/s74/sh/9d3b8f33-b26d-4f19-b35c-958b1e9600ff/41b1d7015fee992c36b1cb66651e40f5

/索引。php:https://www.evernote.com/shard/s74/sh/11010e56-f29c-4507-b131-ae06cf22e0bf/e859f5ad1f42919ddde25e5c27812ed5

1 个回复
SO网友:J Garcia

在中更改此行index.php 从根目录上

require(\'./wordpress/wp-blog-header.php\');

require(\'./wdps/wp-blog-header.php\');
然后做一个.htaccess 根目录上的文件如下:

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wdps/
RewriteRule ^index\\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wdps/index.php [L]
</IfModule>
# END WordPress

结束

相关推荐

Permalinks not working

我知道,问了无数次,回答了无数次。我一生都找不到我的错误。正在尝试将永久链接设置为使用post name,/%postname%/尝试访问主页以外的任何其他地方都会产生404错误。默认的永久链接设置工作正常。任何帮助都将不胜感激。.htaccess在web根目录中 # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\\.ph