url   rewrite   图片失效问题

url   rewrite   图片失效问题

本人将profile.asp?id=1   rewite为   profile/1

但是网页中的图片连结完全错误了
它会指向了   http://domain.com/profile/images/01.jpg
应该是   http://domain.com/images/01.jpg   才对

请问怎样才可指向正确,怎解决啊?谢谢

<img   src= "images/01.jpg ">

RewriteRule   ^profile/(.+)$     profile.asp?id=$1     [L,QSA]

当然会失效了,改成这样吧 <img   src= "/images/01.jpg ">
睜眼 …地獄 _▂_▂゛閉眼.┈天堂﹏ ﹌
也不行啊
因为我是放在domain下一层的
http://domain.com/article/profile/1

http://domain.com/article/profile.asp?id=1
没有看明白?
详细地说一下?
<img   src= "/images/01.jpg ">

这个用在根目录就可以,rewrite后没有错
但我不是放在根目录下

|-domain
        |-/article
                  |-/images
                  |-/profile.asp
                  |-/.htaccess

RewriteRule   ^profile/(.+)$   profile.asp?id=$1   [L,QSA]

这便图片失效了
或许你需要   RewriteBase  
http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html
前面加/的目的就是指明根目录,据我的理解,是把原先的相对路径变成绝对路径。所以如果你的图片在/webroot/article/images/01.jpg   下,那么你就用 <img   src= "/article/images/01.jpg ">
图片用绝对路径,才是王道。