仅在 IOS 中的重定向太多?

Too many redirects ONLY in IOS?

除 IOS 以外,该网站在其他任何地方都运行良好。 http://www.pepedivecenter.com.

当我尝试使用 Chrome 或 Safari 在 iPad 或 IPhone 中打开网站时,我收到 太多重定向 错误。

web.config 很干净:

    <?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <handlers>
            <remove name="PHP_via_FastCGI" />
            <add name="PHP_via_FastCGI" path="*.php" verb="*" modules="FastCgiModule" scriptProcessor="C:\php\php-cgi.exe|-d open_basedir='D:\XVRT\pepedivecenter.com\Html;D:\XVRT\pepedivecenter.com\html\new'" resourceType="File" requireAccess="Script" />
        </handlers>
        <security>
            <ipSecurity allowUnlisted="true">
            </ipSecurity>
        </security>
        <staticContent>
            <remove fileExtension=".htm" />
            <remove fileExtension=".html" />
            <mimeMap fileExtension=".html" mimeType="text/html" />
            <mimeMap fileExtension=".htm" mimeType="text/html" />
        </staticContent>

    </system.webServer>
</configuration>

我试过启用和禁用友好的网址, 该网站是 运行 在 IIS 下,所以我尝试了几种配置 web.config

我清理了 joomla 的缓存和重定向。

我清理了浏览器缓存和 cookie。

我将所有内容更新到最新版本 (joomla 3.6.5) 但问题仍然存在。

如何解决这个问题?有任何想法吗?

谢谢!

我找到了解决方法。
问题是由 Joomla 插件 "System - Language Filter" 引起的。 我禁用了这个插件,现在网站可以在 IOS.

中运行