webserver的安装
Posted 禅_无知
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webserver的安装相关的知识,希望对你有一定的参考价值。
apache的安装
安装 yum install httpd
启动 service httpd start
停止 service httpd stop
查看是否启动 : ps -ef | grep httpd
配置虚拟主机
<VirtualHost *:80>
ServerName www.2bphp.com
DocumentRoot /data/apache
<Directory "/data/apache">
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*).htmp index.php
</IfModule>
</Directory>
</VirtualHost>
</VirtualHost>
nginx的安装
安装 yum install nginx
启动 service nginx start
重载 service nginx reload
停止 service nginx stop
以上是关于webserver的安装的主要内容,如果未能解决你的问题,请参考以下文章
学习总结快速上手Linux玩转典型应用-第7章-WebServer安装和配置讲解