代码之家  ›  专栏  ›  技术社区  ›  mjb

URL路由在WordPress站点上的.NET虚拟目录中不起作用

  •  0
  • mjb  · 技术社区  · 6 年前

    假设这是根网站,是WordPress PHP网站:

    www.mywebsite.com
    

    我把根网站上的一个子文件夹做成了一个.NET应用程序(一个工作文件夹)ASP.NET网站)

    www.mywebsite.com/subapp
    

    这个ASP.NET站点“subapp”运行良好,只是web路由不起作用。

    “页面”~/登录.aspx“一切正常。此页面已路由到“~/Login”,它作为根站点运行正常,但在虚拟目录中失败。

    这是有效的:

    www.mywebsite.com/subapp/Login.aspx
    

    www.mywebsite.com/subapp/Login
    

    路由由WordPress捕获,并显示一个“页面未找到”由WordPress。

    这就是web.config文件WordPress网站:

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
    <system.webServer>
    <rewrite>
    <rules>
    <rule name="HTTP to HTTPS redirect" stopProcessing="true">
    <match url="(.*)"/>
    <conditions><add input="{HTTPS}" pattern="off" ignoreCase="true"/></conditions>
    <action type="Redirect" redirectType="Permanent" url="https://{HTTP_HOST}/{R:1}"/>
    </rule>
    <rule name="WordPress: https://www.mywebsite.com" patternSyntax="Wildcard">
    <match url="*"/>
    <conditions>
    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
    </conditions>
    <action type="Rewrite" url="index.php"/>
    </rule></rules>
    </rewrite>
    </system.webServer>
    </configuration>
    

    这是“子应用”的web路由C代码:

    using System.Web.Routing;
    
    public class Global : System.Web.HttpApplication
    {
        protected void Application_Start(object sender, EventArgs e)
        {
            RouteTable.Routes.MapPageRoute("login", "Login", "~/Login.aspx");
        }
    }
    
    1 回复  |  直到 6 年前
        1
  •  0
  •   mjb    6 年前

    这是修改后的web.config文件解决了问题:

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
    <system.webServer>
    <rewrite>
    <rules>
    <rule name="HTTP to HTTPS redirect" stopProcessing="true">
    <match url="(.*)"/>
    <conditions><add input="{HTTPS}" pattern="off" ignoreCase="true"/></conditions>
    <action type="Redirect" redirectType="Permanent" url="https://{HTTP_HOST}/{R:1}"/>
    </rule>
    </rules>
    </rewrite>
    </system.webServer>
    </configuration>
    

    <?xml version="1.0" encoding="UTF-8"?>
    <configuration>
    <system.webServer>
    <rewrite>
    <rules>
    <rule name="HTTP to HTTPS redirect" stopProcessing="true">
    <match url="(.*)"/>
    <conditions><add input="{HTTPS}" pattern="off" ignoreCase="true"/></conditions>
    <action type="Redirect" redirectType="Permanent" url="https://{HTTP_HOST}/{R:1}"/>
    </rule>
    <rule name="WordPress: https://www.mywebsite.com" patternSyntax="Wildcard">
    <match url="*"/>
    <conditions>
    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
    </conditions>
    <action type="Rewrite" url="index.php"/>
    </rule></rules>
    </rewrite>
    </system.webServer>
    </configuration>
    

    但是,通过这种编辑,WordPress无法捕获任何“页面未找到”错误。