vote up 1 vote down star
1

hi,

I got a asp site hosted in a iis server. In the server there is a virtual folder products and whenever a url like xyz.com/products/abc_11.asp is provided it is forwared to xyz.com/product.asp?id=11 page.

I would like to know from where we can change that settings?

These settings or tasks can be done from where?

Thnx

flag
1  
Which version of IIS? Are you using ISAPI_Rewrite? More details please. – Mark B Oct 8 at 13:21
I dont know the version of IIS on server but its iis 7 on my local computer – KoolKabin Oct 9 at 7:47
Its IIS6 on web server – KoolKabin Oct 9 at 8:17
OK, so is there a file called httpd.ini in your web root folder? – Mark B Oct 9 at 9:00
no there isn't... – KoolKabin Oct 9 at 9:11
show 2 more comments

2 Answers

vote up 0 vote down

If non of mike's suggestions match your setup it's also possible to accomplish the redirection using a custom 404 error page.

  • See what is specified for 404 in IIS for the website on the "Custom Errors" tab
  • If the type is "URL" rather than "File" then I'd say there's a good chance that code in the file that the URL specifies is performing the redirection
link|flag
vote up 0 vote down

Does the folder "products" or file "abc_11.asp" physically exist on the webserver? There are many ways to accomplish the task of having a sepcific url forward to another url.

  1. There are URL rewritting ISAPI addons for IIS, like ISAPI_Rewrite. ISAPI_Rewrite will have a httpd.ini file either in the ISAPI_Rewrite installation folder or the physical folder for the website.

  2. II6 has the ability to redirect a request for a folder or a file to another location. This is configured by viewing the properties for the folder or file in the IIS Admin. On the Directory/File tab you will see 3 radio buttons, one of which is "A redirection to a URL".

  3. The file can physically exists and in it is code to redirect the user.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.