Rumah  >  Artikel  >  pembangunan bahagian belakang  >  Apache使用Tips

Apache使用Tips

WBOY
WBOYasal
2016-08-08 09:31:251207semak imbas

一、多站点配置:

1.打开httpd.conf,设置启用虚拟目录:

<directory></directory>
    options FollowSymLinks
    AllowOverride all
    Allow from all
    #Require all denied


2.指定虚拟目录位置:

Include conf/extra/httpd-vhosts.conf,

3.修改节点

<pre name="code" class="html"><virtualhost>
        ServerAdmin webmaster@dummy-host.example.com 
        DocumentRoot "/var/www/cloud_whirlpool_china"
        ServerName cloud.whirlpool-china.com
        ServerAlias cloud.whirlpool-china.com
        ErrorLog "logs/cloud.whirlpool-china.com-error_log"
        CustomLog "logs/cloud.whirlpool-china.com-access_log" common
</virtualhost> 


也可以把VirtualHost直接配置在httpd.conf文件里。

二、远程访问权限设置:

1.设置防火墙

2.修改配置文件:

/etc/httpd/conf/httpd.conf

<directory>
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
</directory>

三、常用命令

/bin/systemctl start httpd.service     #启动
/bin/systemctl restart httpd.service   #重启
/bin/systemctl status httpd.service    #查看状态

以上就介绍了Apache使用Tips,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn