php - WordPress 拒绝加载

标签 php wordpress apache

几天来,我一直在尝试在 apache 虚拟主机上安装 wordpress 博客,但无济于事。请注意,虚拟主机配置工作正常,因为每个虚拟主机加载其各自的 index.html 或 index.php。只有在安装 Wordpress 时我才没有收到任何响应。我的 conf 文件看起来像

<VirtualHost *:80>
    # The ServerName directive sets the request scheme, hostname and port that
    # the server uses to identify itself. This is used when creating
    # redirection URLs. In the context of virtual hosts, the ServerName
    # specifies what hostname must appear in the request's Host: header to
    # match this virtual host. For the default virtual host (this file) this
    # value is not decisive as it is used as a last resort host regardless.
    # However, you must set it for any further virtual host explicitly.
    ServerName example.com
    ServerAlias www.example.com
    ServerAdmin admin@example.com
    DocumentRoot /var/www/example

    <Directory /var/www/example/>
            Options Indexes FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
    </Directory>

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual host. For example the
    # following line enables the CGI configuration for this host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

博客位于目录/var/www/example 中,我的 .htaccess 文件如下所示

# BEGIN WordPress
<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

我启用了 mod_rewrite,所以我不确定问题出在哪里。检查 apache 错误日志没有任何结果,访问日志总是显示 301 返回。有什么想法吗?

最佳答案

我通过删除/var/www/example 目录中的 .htaccess 并删除 conf 文件中的行来修复此问题。

关于php - WordPress 拒绝加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40716577/

相关文章:

jquery - 如何在 Wordpress 中创建一个动态变化的菜单?

php - Woocommerce:在购物车页面上显示产品重量

apache - URL 重写 - 多重查询

python - 如何在 Ubuntu 上设置本地 Django 开发环境?

php - Bonkers PHP 几个月?

javascript - React 中的 CSRF 字段 (JSX)

php - 使用 $_POST 变量重定向

php - MySQL 5.5 自动时间戳更新到当前

wordpress - Woocommerce,管理员通过 wp-admin 添加时更新价格

php - htaccess SEO url 包含样式失败.. 如何解决这个问题?