我使用 vscode 作为我的编辑器,使用 php intelephense 作为我的 php 格式化程序。它工作得很好,但是当我想使用相对文件路径时,例如:
<link rel="stylesheet" href="../css/style.css">
但是我的 php intelephense 总是建议我记录根目录,所以我遵循了这个建议
<link rel="stylesheet" href="sites/css/index.css">
这是我的文件夹层次结构
-htdocs/
-anotherSites/
-sites/
-php/
index.php
-css/
style.css
所以当我遵循 intelephense 的建议时,它会产生错误错误的路径到我的 css
http://localhost/sites/php/sites/css/style.css
显然样式 css 的路径应该是这样的
http://localhost/sites/css/style.css
我知道我可以手动添加正确的路径,但我想 php intelephense 建议我正确的路径,当我忘记文件路径时它会让我很容易。那么有正确路径建议的解决方案是什么?