仅在IOS中重定向太多?

时间:2016-12-15 15:36:03

标签: web-config mobile-safari joomla3.0 iis-8

除IOS外,此网站在任何地方都可以正常使用。 http://www.pepedivecenter.com

  • 适用于Windows,Firefox,Chrome或IE。
  • 适用于Safari或Chrome的OSX
  • 适用于Android手机
  • 但是,它在使用Chrome或Safari的IOS(iPhone或iPad)中无效!

当我尝试使用Chrome或Safari在iPad或iPhone上打开网站时,我收到 TOO MANY REDIRECTS 错误。

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) 但问题还在继续。

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

TKS!

1 个答案:

答案 0 :(得分:0)

我找到了解决方法 问题是由Joomla插件&#34;系统 - 语言过滤器&#34;引起的。 我禁用了此插件,现在该网站在IOS中运行。