douhuai2861 2017-02-06 15:27
浏览 303
已采纳

ERR_UNKNOWN_URL_SCHEME加载一个CSS

I have an old Joomla site, and I would need to check its layout and take a screen capture.

Actually I restored all the files and database on a xampp 1.8.0, locally on my pc. Then I obviously changed some configurations inside the configuration.php to meet xampp path and db user.

If I try to browse to the site home, in the Chrome developer tools, I get ERR_UNKNOWN_URL_SCHEME, relative to some css files. I don't understand which is exactly the reason of this error.... the css files are present in the directory.

Any idea about this error? Kind regards, Matt

  • 写回答

1条回答 默认 最新

  • dtvdz911959 2017-02-07 08:55
    关注

    There's a long-standing bug in Chromium regarding how links without protocols are handled. It occasionally is patched, but seems to keep resurfacing.

    Prefixing your links with http:// (or https://) should resolve the issue for you:

    <link type="text/css" rel="stylesheet" href="http://localhost:8080/domaintest/templates/egHome/css/template_css.‌​css">
    

    Hope this helps! :)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?