htaccess和img路径

时间:2014-01-21 08:12:36

标签: php .htaccess

当我使用以下htaccess时,我的链接一切正常

Options +FollowSymlinks
RewriteEngine On

RewriteRule ^auteur\.html$    auteur.php    [L]
RewriteRule ^references\.html$   references.php [L]
RewriteRule ^contact\.html$  contact.php [L]
RewriteRule ^site/actualite\.html$  /site/actualite.php [L]
RewriteRule ^site/actualiteDetail/([0-9]+)/([0-9a-zA-Z_-]+)\.html$  /site/actualiteDetail.php?id=$1&titre=$2    [L]

唯一的问题是我在页面上的图片mysite.com/site/actualiteDetail/17/titre.html例如。 我的img的路径是:www.mysite.com/pub/img/img.png

如何纠正?谢谢!

2 个答案:

答案 0 :(得分:1)

在路径前使用斜杠('/')。这是一个常见的.htaccess问题。

答案 1 :(得分:0)

添加到标记:<base href="site_url"/> 或者你可以添加/在图像路径前面。