douao1579 2012-09-19 11:12
浏览 112
已采纳

.htaccess文件,路径被正确重定向,但未加载图像和CSS

Hi I am using the following lines in my .htaccess file

Options +FollowSymLinks
RewriteEngine on
RewriteBase /coaster/CoasterInsider/
 RewriteRule signup$ index.php?page=signup [L,NC]
 RewriteRule login$ index.php?page=loginHandle [L,NC]
 RewriteRule u/(.*)$ index.php?page=profile&username=$1 [L,NC]

The path is getting redirected properly, but the css,flash and images are not loading. Also if I use the following '/' after any url say,

RewriteRule signup(/?)$ index.php?page=signup [L,NC]

It's not finding any page there, i.e. error 404. I just want my htaccess file to work for both /signup and /signup/

  • 写回答

3条回答 默认 最新

  • dryb38654 2012-09-19 11:21
    关注

    When browser displays:

    http://example.com/coaster/CoasterInsider/signup
    http://example.com/coaster/CoasterInsider/signup/
    

    and encounters a relative URL such as:

    <img src="site/images/photo.png">
    

    It translates the relative URL to (respectively):

    http://example.com/coaster/CoasterInsider/site/images/photo.png
    http://example.com/coaster/CoasterInsider/signup/site/images/photo.png
    

    You should use absolute URLs for assets. Make this a habit:

    <img src="/site/images/photo.png">
    

    Alternately you can use the HTML base tag in your pages which tells browsers how to treat relative URLs. Personally I do not recommend it.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 有偿 写代码 要用特定的软件anaconda 里的jvpyter 用python3写
  • ¥20 cad图纸,chx-3六轴码垛机器人
  • ¥15 移动摄像头专网需要解vlan
  • ¥20 access多表提取相同字段数据并合并
  • ¥20 基于MSP430f5529的MPU6050驱动,求出欧拉角
  • ¥20 Java-Oj-桌布的计算
  • ¥15 powerbuilder中的datawindow数据整合到新的DataWindow
  • ¥20 有人知道这种图怎么画吗?
  • ¥15 pyqt6如何引用qrc文件加载里面的的资源
  • ¥15 安卓JNI项目使用lua上的问题