Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Ajax Uploader
»
Re: Issues with URL rewriting?
Re: Issues with URL rewriting?
01-07-2009, 4:05 AM
craigtadlock
Joined on 01-07-2009
Posts 13
Re: Issues with URL rewriting?
Reply
Quote
Here is the rule. The default is that it passes on request parameters.
<rule name="Report_Create_Area_Rewrite" stopProcessing="true">
<match url="^report/create/area/("d+)/?"/>
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="components/report/create.aspx?areaID={R:1}"/>
</rule>
To make sure the rule was working I tested the URL bellow and that page loaded properly (however uploading was still broken).
http://localhost/report/create/area/820/?useless=true
From reading the other posts, my issue seems a bit similar to this one...
http://cutesoft.net/forums/thread/44779.aspx
CT
View Complete Thread