xampp for Windows:如何选择绝对路径?
我的文件位于Linux主机中,绝对路径是 /home/kat/public_html/sites/kats
现在我想知道如何在Windows下的xampp中选择Web目录的绝对路径。
非常感谢任何帮助!
I have my files in a linux hosting and the absolute path is /home/kat/public_html/sites/kats
Now I would like to know how to choose the absolute path of a web directory in xampp under Windows.
Any help is greatly appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在使用默认参数的 XAMPP 安装中,您的根目录应位于:
“c:\Program Files\xampp\htdocs\”,因此您的网站必须位于:
“c:\Program Files\xampp\htdocs\kats”
可以在“httpd.conf”apache 配置文件中更改根目录,默认位置为:
c:\Program Files\xampp\apache\conf\httpd.conf
有一个名为“DocumentRoot”的变量,其默认值设置为:
“C:/程序文件/xampp/htdocs”
In a XAMPP installation with default parameters your root directory should be located at:
"c:\Program Files\xampp\htdocs\", so your website must be located at:
"c:\Program Files\xampp\htdocs\kats"
The root directory can be changed in the "httpd.conf" apache's configuration file located by default at:
c:\Program Files\xampp\apache\conf\httpd.conf
There is a variable called "DocumentRoot" with default value set to:
"C:/Program Files/xampp/htdocs"