douyin6188 2016-02-13 19:34
浏览 59
已采纳

如何在XAMPP中更改我的目录根目录

I'm using XAMPP and my root is C:/xampp/htdocs. Firstly, I will list my files:

I have index.php file on htdocs/public I have theme.css file on htdocs/public/css

I'm trying to link my css file to my html file like this:

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

But it doesn't work. When I right click to the browser and select "view source", and when I click to the href="/css/theme.css", it goes to this direction: http://localhost:8080/css/theme.css

But I want to make it go to this direction: http://localhost:8080/public/css/theme.css

How can I make this happen?

  • 写回答

2条回答 默认 最新

  • duanjinchen5296 2016-02-13 19:43
    关注

    You have to indicate your current directory to include the css file, like this:

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

    Here, ./ indicates the current directory.

    Or, you can specify the file path relative to the root directory like this:

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

    Or, you can just remove this /public/ altogether and include your css file like this:

    <link rel="stylesheet" href="css/theme.css" type="text/css">
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何在3D高斯飞溅的渲染的场景中获得一个可控的旋转物体
  • ¥88 实在没有想法,需要个思路
  • ¥15 MATLAB报错输入参数太多
  • ¥15 python中合并修改日期相同的CSV文件并按照修改日期的名字命名文件
  • ¥15 有赏,i卡绘世画不出
  • ¥15 如何用stata画出文献中常见的安慰剂检验图
  • ¥15 c语言链表结构体数据插入
  • ¥40 使用MATLAB解答线性代数问题
  • ¥15 COCOS的问题COCOS的问题
  • ¥15 FPGA-SRIO初始化失败