| Posted: 15 May 2008 at 6:39pm | IP Logged
|
|
|
Trying to do simple Url Rewrite test. Have tried numerous combinations. Once I get simple example working will need to convert to map file. For now, here is simple example that is not working:
Incoming Url is: http://test.myargosy.com/DemoPages/Products/FreeBusinessCards
Outgoing Url needs to be:
http://test.myargosy.com/DemoPages/Products.aspx?ProductName=1
htaccess file is:
# Helicon ISAPI_Rewrite configuration file
# Version 3.1.0.48
RewriteEngine on
RewriteBase /DemoPages
RewriteRule ^/DemoPages/Products/BusinessCards$ Products.aspx?ProductName=1
|