I need to rewrite the URL:
http://www.mydomain.com/test.aspx?pagename=quotes&companycode=324543
To
http://www.mydomain.com/test/quotes/324543
I am Using IIS 7.5 and VS 2008.
I need the text to insert in web.config.
|
I need to rewrite the URL: http://www.mydomain.com/test.aspx?pagename=quotes&companycode=324543 To http://www.mydomain.com/test/quotes/324543 I am Using IIS 7.5 and VS 2008. I need the text to insert in web.config. |
||||
|
|
|
Install URL Rewriting then inside web.config at the XML path system.webServer/rewrite/rules
If you don't need all parameters in the query string then you can replace the regex and parameters ({C:1}/{C:2}) with their literals. |
||||
|
|