Viewing 6 replies - 1 through 6 (of 6 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    i try to call /wp-signup.php and it gets to 404 error.

    You’re going to domain.com/wp-signup.php right?

    Does that file exist on your server?

    Thread Starter summerz

    (@summerz)

    yes there are wp-signup.php and wp-login.php too.

    when i try to access wp-login.php, it automatically redirects to wp-signup.php and goes 404 error.

    i don’t know why…

    any ideas?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Whats in your .htaccess?

    Thread Starter summerz

    (@summerz)

    it is windows server. so don’t have .htaccess.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Okay, what’s in your web.config 🙂

    Thread Starter summerz

    (@summerz)

    my web.config is like this.

    ====

    <?xml version=”1.0″ encoding=”UTF-8″?>
    <configuration>
    <system.webServer>
    <security>
    <requestFiltering>
    <requestLimits maxAllowedContentLength=”2147483648″ />
    </requestFiltering>
    </security>
    <rewrite>
    <rules>
    <rule name=”WordPress Rule 1″ stopProcessing=”true”>
    <match url=”^index\.php$” ignoreCase=”false” />
    <action type=”None” />
    </rule>
    <rule name=”WordPress Rule 2″ stopProcessing=”true”>
    <match url=”^wp-admin$” ignoreCase=”false” />
    <action type=”Redirect” url=”wp-admin/” redirectType=”Permanent” />
    </rule>
    <rule name=”WordPress Rule 3″ stopProcessing=”true”>
    <match url=”^” ignoreCase=”false” />
    <conditions logicalGrouping=”MatchAny”>
    <add input=”{REQUEST_FILENAME}” matchType=”IsFile” ignoreCase=”false” />
    <add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” ignoreCase=”false” />
    </conditions>
    <action type=”None” />
    </rule>
    <rule name=”WordPress Rule 4″ stopProcessing=”true”>
    <match url=”^(wp-(content|admin|includes).*)” ignoreCase=”false” />
    <action type=”Rewrite” url=”{R:1}” />
    </rule>
    <rule name=”WordPress Rule 5″ stopProcessing=”true”>
    <match url=”^([_0-9a-zA-Z-]+/)?(.*\.php)$” ignoreCase=”false” />
    <action type=”Rewrite” url=”{R:2}” />
    </rule>
    <rule name=”WordPress Rule 6″ stopProcessing=”true”>
    <match url=”.” ignoreCase=”false” />
    <action type=”Rewrite” url=”index.php” />
    </rule>
    </rules>
    </rewrite>
    </system.webServer>
    </configuration>

    =============

    but i solved this problem.

    i just to try make all my multisites to Mature and suddenly /wp-signup.php works.

    it’s weird but working now.

    (fyi: my /wp-login.php and /wp-admin/ have been working fine)

    Ipstenu, thank you for helping me. 🙂

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘404 error at wp-signup.php (on Windows)’ is closed to new replies.