如何更改 wampserver 的默认 "www directory"

How to change the default "www directory" for wampserver

我所有的网站都位于 D:/Documents/websites 目录中。我已经设法根据 video tutorial.

http://localhost/ 指向该文件夹

但我还想要的是,每当我从 wampserver 面板单击 "www directory" 时,它都会打开 D:/Documents/websites 目录,而不是默认目录 C:/wamp/www

我该如何实现?谢谢。

首先备份 \wamp\wampmanager.tpl,因为此处的错误可能导致 wampmanager 无法启动。

现在使用像样的编辑器编辑 \wamp\wampmanager.tpl 而不是 notepad

找到这一行,它的第 138 行大约

Type: item; Caption: "${w_wwwDirectory}"; Action: shellexecute; FileName: "${wwwDir}"; Glyph: 2

Copy/Paste 那条线在它下面,然后把它改成这样

Type: item; Caption: "My Sites"; Action: shellexecute; FileName: "d:/Documents/Websites"; Glyph: 2

保存文件。

现在要么启动 WAMPServer,要么如果它实际上已经 运行 通过执行以下操作刷新菜单:-

rightclick on wampmanager icon -> refresh

您现在应该会看到您的新菜单。

如果您愿意,现在可以返回并删除创建 www directory 菜单项的原始行。