ASP.NET Web.config与MagicAjax和重写规则的问题

时间:2011-04-18 09:57:10

标签: asp.net ajax wordpress url-rewriting

嘿,我的ASP.NET网站的webconfig中有以下规则,其中还包含几个在wordpress中控制的部分。

            <rules>
            <rule name="RedirectFinancial" stopProcessing="true">
                <match url="^orgprofile/financial\.aspx$" />
                <conditions>
                    <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
                    <add input="{QUERY_STRING}" pattern="^name=([^=&amp;]+)$" />
                </conditions>
                <action type="Redirect" url="{C:1}/financial" appendQueryString="false" />
            </rule>
            <rule name="RewriteFinancial" stopProcessing="true">
                <match url="^([^/]+)/financial/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="orgprofile/financial.aspx?name={R:1}" />
            </rule>
            <rule name="RedirectGovernance" stopProcessing="true">
                <match url="^orgprofile/governance\.aspx$" />
                <conditions>
                    <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
                    <add input="{QUERY_STRING}" pattern="^([^=&amp;]+)$" />
                </conditions>
                <action type="Redirect" url="{C:1}/governance" appendQueryString="false" />
            </rule>
            <rule name="RewriteGovernance" stopProcessing="true">
                <match url="^([^/]+)/governance/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="orgprofile/governance.aspx?name={R:1}" />
            </rule>
            <rule name="RedirectOverview" stopProcessing="true">
                <match url="^orgprofile/overv\.aspx$" />
                <conditions>
                    <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
                    <add input="{QUERY_STRING}" pattern="^name=([^=&amp;]+)$" />
                </conditions>
                <action type="Redirect" url="{C:1}" appendQueryString="false" />
            </rule>
            <rule name="RewriteOverview" stopProcessing="true">
                <match url="^([^/]+)/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="orgprofile/overv.aspx?name={R:1}" />
            </rule>
            <rule name="RedirectPurpose" stopProcessing="true">
                <match url="^orgprofile/purpose\.aspx$" />
                <conditions>
                    <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
                    <add input="{QUERY_STRING}" pattern="^name=([^=&amp;]+)$" />
                </conditions>
                <action type="Redirect" url="{C:1}/purpose" appendQueryString="false" />
            </rule>
            <rule name="RewritePurpose" stopProcessing="true">
                <match url="^([^/]+)/purpose/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="orgprofile/purpose.aspx?name={R:1}" />
            </rule>
            <rule name="RedirectActivities" stopProcessing="true">
                <match url="^orgprofile/activities\.aspx$" />
                <conditions>
                    <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
                    <add input="{QUERY_STRING}" pattern="^name=([^=&amp;]+)$" />
                </conditions>
                <action type="Redirect" url="{C:1}/activities" appendQueryString="false" />
            </rule>
            <rule name="RewriteActivities" stopProcessing="true">
                <match url="^([^/]+)/activities/?$" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                </conditions>
                <action type="Rewrite" url="orgprofile/activities.aspx?name={R:1}" />
            </rule>
            <rule name="RewriteWordPress" patternSyntax="ECMAScript">
                <match url=".*" />
                <conditions>
                    <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                    <add input="{URL}" pattern="\.axd$" negate="true" />
                    <add input="{URL}" pattern="view.aspx$" negate="true" />
                    <add input="{REQUEST_FILENAME}" pattern="^([^/]+)/financial/?$" negate="true" />
                    <add input="{REQUEST_FILENAME}" pattern="^([^/]+)/governance/?$" negate="true" />
                    <add input="{REQUEST_FILENAME}" pattern="^([^/]+)/?$" negate="true" />
                    <add input="{REQUEST_FILENAME}" pattern="^([^/]+)/purpose/?$" negate="true" />
                    <add input="{REQUEST_FILENAME}" pattern="^([^/]+)/activities/?$" negate="true" />
                </conditions>
                <serverVariables />
                <action type="Rewrite" url="index.php" />
            </rule>

当我添加上述规则时,magicajax的问题​​是我的magicajax上传器不再按预期工作了,当我点击上传按钮时,它会导致页面刷新,就像以前一样自动出现。

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

编辑:问题似乎是概述重写规则

                                                                                                                                                                                                                                                                  

我友好的网址看起来像这样

http://hostname/foldername/companyname&lt; --- overview

http://hostname/foldername/companyname/purpose&lt; ----即目的重写规则

0 个答案:

没有答案