PHPdoc & XAMPP - 未生成类图

PHPdoc & XAMPP - classdiagram not generated

我在 XAMPP 上的项目 运行 上使用 PHPdocumentor。 我有 运行 PHPdoc,所有文档都在

C:\xampp\htdocs\project1\documentation

我的 httpd-vhosts 文件中有一个虚拟主机配置:

<VirtualHost *:80>
ServerAdmin webmaster@documentation.dev
DocumentRoot "C:/xampp/htdocs/project1/documentation"
ServerName www.documentation.dev
ServerAlias *.documentation.dev
ErrorLog "logs/documentation.dev-error.log"
CustomLog "logs/documentation.dev-access.log" common
</VirtualHost>

还有 drivers\etc\hosts 中的一行:

    127.0.0.1       www.documentation.dev

问题

问题是 class-图表由生成的 html 调用,该图表位于:

C:\xampp\htdocs\project1\documentation\classes.svg

当我转到 url www.documentation.nl/classes.svg 时,我在图像上收到错误 500。

我正在使用最新版本的 XAMPP PHPdoc 和(唯一可用的)模板:responsive-twig。

有什么想法吗?

显然 PHPdocumentor 不适用于虚拟主机。 当我从文件夹中单击 index.html 和 运行 整个站点时,一切正常。