0

按照此处的说明,我创建了 2 个别名目录。

<Directory "C:\Users\user\Documents\sites">
   Allow from all
   Require all granted
</Directory>

Alias /site "C:\Users\user\Documents\sites"

<Directory "S:\directory (servername)\site">
   Allow from all
   Require all granted
</Directory>

Alias /lab "S:\directory"

当我访问localhost/site它时,它工作正常并在那里加载网页。

当我访问localhost/lab它时,它会返回一个错误。

警告:未知:无法打开流:第 0 行的未知中没有此类文件或目录

致命错误:未知:无法在第 0 行的未知中打开所需的 'S:/directory (servername)/site/index.php' (include_path='.;C:\ProgramData\xampp\php\PEAR')

当我在 Properties of 中确实注意到S:\directory (servername)PATHS:\directory (servername)实际上是\\servername\directory (servername)这样被映射的。

我将如何让我的 Alias 工作签名,以便我可以localhost/lab成功访问。

谢谢

4

1 回答 1

0

你确定你有 S:\directory....

您可以只使用 C:\dir\server\sites,然后在该目录中创建两个文件夹 lab 和 site!

于 2013-10-09T11:13:35.867 回答