按照here的说明,我创建了2个Alias目录。
<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行未知
致命错误:未知:未能打开所需的'S:/ directory(servername)/site/index.php' 第0行的Unknown中的(include_path ='。; C:\ ProgramData \ xampp \ php \ PEAR')
当我在S:\directory (servername)
的属性中注意到,S:\directory (servername)
PATH实际上是\\servername\directory (servername)
,因此它被映射。
如何让我的Alias工作,以便我可以成功访问localhost/lab
。
由于
答案 0 :(得分:0)
你确定你有S:\目录......
你可以使用C:\ dir \ server \ sites,而不是在那个dir中创建两个文件夹lab和site!