Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的 linux 服务器中,我的 apache 服务器的 www 根目录是 /var/www/html,我在上述路径中有一个名为 blog 的文件夹。我必须通过指定来访问博客文件夹中的网站http://myDomain/blog/。我的问题是我希望能够通过http://myDomain在浏览器中指定来访问该网站(无需将博客文件夹的内容移动到 www 根目录)。是否可以在配置文件中设置任何参数以实现上述目标。
http://myDomain/blog/
http://myDomain
谢谢。
在您的 Apache httpd.conf 文件中,只需将 DocumentRoot 设置为 /var/www/html/blog。
编辑 /etc/httpd/conf/httpd.conf 文件并搜索 DocumentRoot 并从
/var/www/html
到
/var/www/html/blog