按照此处的说明,我创建了 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
成功访问。
谢谢