我在子域上得到 ERR_TOO_MANY_REDIRECTS

I got ERR_TOO_MANY_REDIRECTS on subdomain

只要开发人员将代码提交到子域为 branchname 的任何分支但我收到 ERR_TOO_MANY_REDIRECTS,我就会自动在 apache2 上自动部署我的 wordpress。 我的网站是 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

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