我的Wordpress安装有问题。
问题: 如果我输入http://www.mydomain.de,则会抛出错误"重定向太多"。 如果我输入http://www.mydomain.de/index.php,页面将正确显示。 如果我有一个简单的索引。 php(文本)在目录中,而不是Wordpress。如果这在http://www.mydomain.de
上正常显示配置: 带有VM(Debian)的Web服务器(Debian)。 在VM上是Wordpress安装。 Web服务器转发到VM。 PHP mod_rewrite已启用。
配置Apache Webserver:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
ServerAlias www.mydomain.de
ProxyPass / http://192.168.56.112/
ProxyPassReverse / http://192.168.56.112/
</VirtualHost>
配置Apache VM:
<VirtualHost *:80>
ServerAdmin webmaster@localhost
Servername www.mydomain.de
DirectoryIndex index.php
DocumentRoot /var/www/html
<Directory />
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<Directory /var/www/html>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
配置。 htaccess VM:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
你知道我哪里弄错了吗?