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-WebServer安装和配置

学习总结快速上手Linux玩转典型应用-第7章-WebServer安装和配置讲解

在phpmyadmin安装后,Raspberry Pi webserver无法读取php文件

C++——WebServer服务器项目

Hg WebServer 搭建

Linux系统之使用apache部署webserver下载站点