Im trying to create a url re-writing module for my forums. The url should be something like .....co.uk/owner/group/forum/ but for some reason the httpmodule is not kicking in. I think it is because IIS is not mapping these requests to the asp.net handler. I
dont want to have to add .aspx to the end of the url if I can avoid it. Is there some other way to get it to send the request to the asp.net handler so that my module is implimented?
Add a wildcard mapping in IIS to the ASP.NET runtime. In that case, all requests can be handled by your ASP.NET web application. This means your httpmodule can do its job.
Actually it is possible in IIS5 I managed to get it working fine on windows advanced server 2000. Can you give details about how to do wild card extension mapping with IIS5?
Jigar Desai -----------------------
Do not forget to "Mark as Answer" on the post that helped you.
Open the IIS manager. Right-click the relevant site + click properties Select the Home Directory tab and from the Application Settings section at the bottom click Configuration On the App Mappings tab click Add. Select the relevant executable (aspnet_isapi
for asp.net) In the extension box enter * Choose the verbs and other settings. Press OK.
None
0 Points
507 Posts
Trying to create a url rewriting module
Feb 27, 2005 01:56 PM|imleggy|LINK
Member
10 Points
288 Posts
Re: Trying to create a url rewriting module
Feb 27, 2005 04:28 PM|WilcoB|LINK
None
0 Points
507 Posts
Re: Trying to create a url rewriting module
Feb 28, 2005 01:11 PM|imleggy|LINK
Member
191 Points
935 Posts
Re: Trying to create a url rewriting module
Mar 04, 2005 10:05 AM|Jigar|LINK
-----------------------
Do not forget to "Mark as Answer" on the post that helped you.
None
0 Points
507 Posts
Re: Trying to create a url rewriting module
Mar 04, 2005 01:07 PM|imleggy|LINK
Member
191 Points
935 Posts
Re: Trying to create a url rewriting module
Mar 04, 2005 02:20 PM|Jigar|LINK
-----------------------
Do not forget to "Mark as Answer" on the post that helped you.
None
0 Points
507 Posts
Re: Trying to create a url rewriting module
Mar 04, 2005 02:33 PM|imleggy|LINK
Member
191 Points
935 Posts
Re: Trying to create a url rewriting module
Mar 05, 2005 12:24 AM|Jigar|LINK
-----------------------
Do not forget to "Mark as Answer" on the post that helped you.