我在子域上获得了ERR_TOO_MANY_REDIRECTS

时间:2017-01-13 01:32:41

标签: wordpress apache2

我有脚本在apache2上自动部署auto我的wordpress,只要开发人员将代码提交给任何具有子域名的分支是branchname,但我收到了ERR_TOO_MANY_REDIRECTS。 我的网站是https://feature_fabfitfuntheme.shop.fffdev.com/ 奇怪的是,当我进入https://feature_fabfitfuntheme.shop.fffdev.com/welcome/这样的子页面时,它的效果非常好。 这是我的.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

1 个答案:

答案 0 :(得分:0)

我解决了这个错误。刚刚将URL更改为小写。 enter image description here

相关问题