唯一小编 发布时间:2019-03-19
一、 安装Apache
yum install httpd
二、 启动Apache
service httpd start
三、 开放80端口
iptables -A INPUT -p tcp --dport 80 -j ACCEPT #开放80端口
service iptables save #保存iptalbes规则
service iptables restart #重启iptables使刚才添加的规则生效
四、 测试
在浏览器中输入http://您的IP地址/即可访问Apache的默认页面
五、 修改默认网页存放路径
网页文件默认存放地址是 : /var/www/html,修改httpd配置文件
vi /etc/httpd/conf
找到 DocumentRoot,首先把整个默认选项注释掉
# DocumentRoot "/var/www/html"
DocumentRoot "/usr/share/html"
<Directory "/usr/share/html">
AllowOverride None
# Allow open access:
Require all granted
</Directory>
# 退出并保存
mkdir /usr/share/html # 新建目录
vi /usr/share/html/index.html # 编辑主页文件
# 添加一行内容,如:hello wy.cn ,保存
service httpd restart # 重启apache
# 退出并保存
重启服务后,访问http://您的IP地址/查看是否刚才添加的内容
六、 修改apache监听端口
打开apache配置文件,找到listen 80
修改成 listen 8080
修改完后必须添加防火墙规则
iptables -A INPUT -p tcp --dport 8080 -j ACCEPT
service httpd restart # 重启apache和iptables
service iptables restart
访问 http://您的IP地址:8080/ 即可看到页面
七、 Alisa功能简介
vi /etc/httpd/conf
# 添加以下内容
<IfModule alias_module>
Alias /wy /usr/local/soft/html # alias名、真实目录
</IfModule>
<Directory "/usr/local/soft/html"> # 增加目录访问权限
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
Require all granted
</Directory>
在/usr/local/soft/html下增加一个index.html文件
内容是welcome to wy.cn
再看一下测试效果:
一、 开机自动运行
让apache在运行级别为2、3、4、5时自动运行
chkconfig –level 2345 httpd on
服务器租用/服务器托管最具实力IDC提供商!十年品牌保障 – 唯一网络!
转载请注明:唯一网络http://www.wy.cn/
一、 安装Apache
yum install httpd
二、 启动Apache
service httpd start
三、 开放80端口
iptables -A INPUT -p tcp --dport 80 -j ACCEPT #开放80端口
service iptables save #保存iptalbes规则
service iptables restart #重启iptables使刚才添加的规则生效
四、 测试
在浏览器中输入http://您的IP地址/即可访问Apache的默认页面
五、 修改默认网页存放路径
网页文件默认存放地址是 : /var/www/html,修改httpd配置文件
vi /etc/httpd/conf
找到 DocumentRoot,首先把整个默认选项注释掉
# DocumentRoot "/var/www/html"
DocumentRoot "/usr/share/html"
<Directory "/usr/share/html">
AllowOverride None
# Allow open access:
Require all granted
</Directory>
# 退出并保存
mkdir /usr/share/html # 新建目录
vi /usr/share/html/index.html # 编辑主页文件
# 添加一行内容,如:hello wy.cn ,保存
service httpd restart # 重启apache
# 退出并保存
重启服务后,访问http://您的IP地址/查看是否刚才添加的内容
六、 修改apache监听端口
打开apache配置文件,找到listen 80
修改成 listen 8080
修改完后必须添加防火墙规则
iptables -A INPUT -p tcp --dport 8080 -j ACCEPT
service httpd restart # 重启apache和iptables
service iptables restart
访问 http://您的IP地址:8080/ 即可看到页面
七、 Alisa功能简介
vi /etc/httpd/conf
# 添加以下内容
<IfModule alias_module>
Alias /wy /usr/local/soft/html # alias名、真实目录
</IfModule>
<Directory "/usr/local/soft/html"> # 增加目录访问权限
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
Require all granted
</Directory>
在/usr/local/soft/html下增加一个index.html文件
内容是welcome to wy.cn
再看一下测试效果:
一、 开机自动运行
让apache在运行级别为2、3、4、5时自动运行
chkconfig –level 2345 httpd on
服务器租用/服务器托管最具实力IDC提供商!十年品牌保障 – 唯一网络!
转载请注明:唯一网络http://www.wy.cn/