0

我到处寻找解决这个问题的方法,但我尝试过的都没有奏效。当将永久链接设置为 /index.php/%postname%/ 时,它工作正常,但是当我删除 index.php 部分时,我只得到一个 404 并且在日志中:

[Tue Aug 13 05:05:46 2013] [error] [client 202.58.198.84] File does not exist: /var/www/html/domain1/postname, referer:.....

我有一个通过虚拟主机运行 Apache 的 Red Hat 网络服务器,其中包含两个 Wordpress 站点。虚拟主机看起来像这样。

<VirtualHost *:80>
  # General
  ServerAdmin info@domain1.com
  DocumentRoot /var/www/html/domain1
  ServerName domain1.com
  ServerAlias www.domain1.com

  # Logging
  ErrorLog logs/domain1-error_log
  CustomLog logs/domain1-access_log common
</VirtualHost>

<VirtualHost *:80>
  # General
  ServerAdmin info@domain2.com
  DocumentRoot /var/www/html/domain2
  ServerName domain2.com
  ServerAlias www.domain2.com

  # Logging
  ErrorLog logs/domain2-error_log
  CustomLog logs/domain2-access_log common
</VirtualHost>

更改前端设置中的永久链接后,子文件夹中的 .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

我也尝试过改变

RewriteBase /

RewriteBase /subfolder

没有任何运气。

这不是一个大问题,但它困扰了我很多!如果有人对此有解决方案,我将不胜感激。

4

1 回答 1

1

确保:

  • 您的 wordpress 永久链接设置设置为 /%postname%
  • .htaccess 文件放置在 /var/www/html/domain1 内(与 domain2 相同)
  • you specify some rules for the domain1/2 directory like this (add this piece of code right before the </virtualhost> tag inside your configuration file):

    <Directory /var/www/html/domain1>
            Options FollowSymLinks MultiViews
            AllowOverride All
            Order allow,deny
            allow from all
    </Directory>
    
于 2013-08-13T08:06:39.937 回答