macos – So ändern Sie den standardmäßigen Zugriffs-Site-Ordnerpfad von Apache für einen bestimmten Benutzer auf dem Mac
给我你的怀抱
给我你的怀抱 2017-05-16 17:01:20
0
5
799

Wie der Titel schon sagt, möchte ich den Standardzugriffsordnerpfad von Apache unter meinem Benutzer (Donny) ändern. Das heißt, ändern Sie den Pfad, auf den über http://localhost/~Donny/ zugegriffen wird. Der aktuelle Standardzugriffspfad ist ~/Website. Kann er in einen anderen Speicherort geändert werden?

给我你的怀抱
给我你的怀抱

Antworte allen(5)
大家讲道理

都没人回答么。。

漂亮男人

find . -name http.conf
vi http.conf 修改<DocumentRoot>这一项,指定你要的路径

滿天的星座

并不知道可不可以解决问题,只提供个思路。

改host。

phpcn_u1582

mac apache环境我现在在用,配置和linux差不多,主要在于权限问题要处理一下,偷懒的话可以在apache运行时用户做功夫

phpcn_u1582

通过修改http-vhosts.conf文件来完成你的需求。
下面是我的Mac上的该配置文件中的配置片段

<VirtualHost *:80>
         DocumentRoot "/path" #这里指定你的网站根目录
         ServerName example.com
         ErrorLog "/private/var/log/apache2/sites-error_log"
         CustomLog "/private/var/log/apache2/sites-access_log" common
         <Directory />
                 Options Indexes FollowSymLinks MultiViews
                 AllowOverride All
                 #Order deny,allow
                 #Allow from all
                 Require all granted
         </Directory>
</VirtualHost>

默认的,我的apache程序的目录在/etc/apache2,而该配置文件则是在该目录下的extra目录,这里面有许多配置文件,这些配置文件一般都被/etc/apache2目录下的主配置文件httpd.conf所引用。

你可以参照我的配置片段修改你的http-vhosts.conf文件,修改完成之后需要重启apache。

其实这些配置,无论是在Mac上还是Linux上,道理都是一样的,apache官方文档也提供了详尽的文档,只要耐心查看,很快就能找到答案了。

希望能帮到你。

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage