Welcome Guest, Not a member yet? Register   Sign In
Can't submit forms when using URL rewrite
#2

[eluser]dallen33[/eluser]
I figured it out, although I'm not sure why this was causing the problem. I had the following redirect that added a slash to a URL if it didn't contain one.
Code:
<rule name="Add trailing slash" stopProcessing="true">
    <match url="(.*[^/])$" />
    <conditions>
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
    </conditions>
    <action type="Redirect" redirectType="Permanent" url="{R:1}/" />
</rule>


Messages In This Thread
Can't submit forms when using URL rewrite - by El Forum - 08-17-2010, 04:17 PM
Can't submit forms when using URL rewrite - by El Forum - 08-17-2010, 04:24 PM



Theme © iAndrew 2016 - Forum software by © MyBB