>I know that...I was referring to what is rendered after the fact.When i >click on image information, the image info should display the url with /er/ >in it...not the other as that is part of the path from the root.
NO, you don't quite seem to get it actually. When I said CF has got nothing to do with it... it serious has NOTHING to do with it. You have this IMG tag: <img src="/cup/images/image.png" /> As far as CF is concerned that's all just text, it doesn't process it at all. Like I said, CF mappings are only for CF to find files in its own file system. It's got *nothing* (NOTHING) to do with URLs. That being the case, there is going to be no magic transformation of <img src="/cup/images/image.png" /> to <img src="/er/cup/images/image.png" /> simply because you have a *ColdFusion* mapping set up. If you want to send the URL /er/cup/images/image.png down to the browser (where "er" is a value stored in application.cuproot, then you need to code for that, eg: <img src="/#application.cuproot#/images/image.png" /> You have to understand that CF (and CFML) have no knowledge of the concept of HTML or client browsers or anything like that, All CF does is accept a request for a file from the web server, assembles some data to send back via processing some CFML (kinda), and that's it. It has no idea you want your image tags to have different URLs from the ones you tell it... it just does what it's told. It really would help if you read that doc I linked to before. -- Adam ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:357154 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

