我有一个HTML页面,例如www.somesite.com/Directory/foo.html
。在此页面上,我引用了当前位于根目录中的样式表和图像。我引用的文件相对像:
<link rel="stylesheet" href="../foos_style.css">
<img src="../foos_image.png" alt="" />
我已经设置了Apache 2.4.4 rewrite_mode来将www.somesite.com/Directory/foo.html
重定向到www.somesite.com/foo/gets/redirected/to/thispage.html
。我成功地重写了URL,但现在既没有加载样式表也没有加载图像。显然,它与相对链接有关。
有什么方法可以解决这个问题,以便图像和样式表相对于原始URL而不是重写的URL加载?