| Posted: 07 August 2008 at 10:31am | IP Logged
|
|
|
I'm just new to isapi_rewrite.
Does anyone know if there is a RewriteRule that can be written to prevent all image paths being changed by my Rewrite rules? Basically I am rewriting alot of URLs for my application with Rules like
RewriteMap deptmap txt:rewrite\depts.map
RewriteRule ^shop/list/([BC]{1})/([\&_a-zA-Z'-]*)(/?)$ /products.asp?lvl1_id=${deptmap:shop}&lvl2_id=${deptmap:$2}}&category=$1 [NC, QSA, L]
However my images aren't displaying
I know I can go back and change all my image paths in the application to use root relative paths and/or use the html <base> tag but I'm I was hoping for a quick and easy fix without having to go back through all my pages 
|