doufu5747 2015-01-23 22:08
浏览 63

如何修复.htaccess问题[关闭]

I changed .htaccess to this ErrorDocument 404 /index.php Now when I visit my domain, mydomain/test(test folder doesnt exist) then it redirects properly. But when I open mydomain.com/test/test, it does load the content but doesnt load other css file and images.

Please visit these links to understand the problem www.appsbuzzer.com/o and www.appsbuzzer.com/o/o

Any help is appreciable

  • 写回答

2条回答 默认 最新

  • duangang79177 2015-01-23 22:12
    关注

    in your html you include the css relative to the current folder

    <link type="text/css" rel="stylesheet" href="css/style.css"/>
    

    when visiting http://appsbuzzer.com/o/o the browser looks for http://appsbuzzer.com/o/css/style.css

    change it to

    <link type="text/css" rel="stylesheet" href="/css/style.css"/>
    

    edit:

    or add a base-tag

    <base href="http://appsbuzzer.com/">
    
    评论

报告相同问题?