$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>Too Many Redirects - WP-Admin Only|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

Too Many Redirects - WP-Admin Only

matteradmin8PV0评论

I have a couple of sites on a shared hosting server.

The sites load just fine, and everything appears to work, including local links. The only thing that isn't working is that the entire wp-admin directory is throwing a "too many redirects" error message.

Here is what my redirects look like to handle the domain (this is the only non-standard part of this install):

<configuration>
    <system.webServer>
        <rewrite>
          <rules>
            <rule name="Site 2 Redirect" stopProcessing="true">
                <match url="^(.*)" />
                <conditions>
                    <add input="{HTTP_HOST}" pattern="^blog\.site2\$" />
                </conditions>
                <action type="Rewrite" url="/site2/" />
            </rule>
          </rules>
        </rewrite>
    </system.webServer>
</configuration>

I did see other posts claiming that the admin folder required 705 permissions, which I have set to no avail.

Any help would be greatly appreciated.

I have a couple of sites on a shared hosting server.

The sites load just fine, and everything appears to work, including local links. The only thing that isn't working is that the entire wp-admin directory is throwing a "too many redirects" error message.

Here is what my redirects look like to handle the domain (this is the only non-standard part of this install):

<configuration>
    <system.webServer>
        <rewrite>
          <rules>
            <rule name="Site 2 Redirect" stopProcessing="true">
                <match url="^(.*)" />
                <conditions>
                    <add input="{HTTP_HOST}" pattern="^blog\.site2\$" />
                </conditions>
                <action type="Rewrite" url="/site2/" />
            </rule>
          </rules>
        </rewrite>
    </system.webServer>
</configuration>

I did see other posts claiming that the admin folder required 705 permissions, which I have set to no avail.

Any help would be greatly appreciated.

Share Improve this question edited May 21, 2013 at 16:53 s_ha_dum 65.6k13 gold badges84 silver badges174 bronze badges asked May 21, 2013 at 16:44 Cory DeeCory Dee 1051 silver badge7 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 1

I suggest you to enable WP_DEBUG 'ON' to find out the error. You can enable WordPress debug editing wp-config.php file by adding define( 'WP_DEBUG', true );

Check the following document for better understanding https://codex.wordpress/Debugging_in_WordPress

I do not really know where your problem comes from but I know a trick to fix this issue in some case :

ErrorDocument 401 default

This code goes in main .htaccess at the very beginning.

Hope this will do the job.

Articles related to this article

Post a comment

comment list (0)

  1. No comments so far