Git 存储库下的 Dreamweaver 站点根目录

Git 存储库下的 Dreamweaver 站点根目录

这更像是 Dreamweaver 的问题,因为我想在 Dreamweaver 中设计网站并管理我的 git 存储库。假设我设置了一个名为 的 Git 存储库git-repo-web

文件夹结构如下:

computer1:git-repo-web user1$ tree
.
├── .git
├── .gitlab-ci.yml
├── .gitignore
├── README.md
└── htdocs
    ├── bootstrap
    |   └── css
    │       ├── bootstrap-theme.css
    │       ├── bootstrap-theme.min.css
    │       └── bootstrap.css
    ├── index.html
    ├── template-simple.html
    ├── template.html
    ├── terms.html
    └── whatsnew.html

在 Dreamweaver 中,我的网站如下所示。如果我在该级别设置 Dreamweaver 站点git-repo-web,它可以与我现有的 git 存储库很好地配合使用,但是当我尝试查看 htdocs 下的内容时,由于它查找 css 文件的方式,它无法正确显示网页。

如果我在该级别设置 Dreamweaver 网站htdocs,网站将完美呈现,但它不知道高于 htdocs 级别的现有 git repo。

我想在git-repo-web目录级别添加我的 Dreamweaver 站点,以便它识别现有的 git 存储库,但我希望我的站点根目录位于此目录下的目录,即htdocs。这可能吗?

我可以在 定义我的站点git-repo-web,然后在 定义一个符号根吗htdocs

相关内容