网站与网站自动跳转代码网站开发实训心得800
作业:请给openlab搭建web网站
网站需求:
1.基于域名 www.openlab.com 可以访问网站内容为 welcome to openlab!!!
2.给该公司创建三个子界面分别显示学生信息,教学资料和缴费网站,
1、基于 www.openlab.com/student 网站访问学生信息,
2、基于 www.openlab.com/data 网站访问教学资料
3、基于 www.openlab.com/money 网站访问缴费网站。
3.要求
(1)学生信息网站只有 song 和 tian 两个用户可以访问,其他用户不能访问。
(2)访问缴费网站实现数据加密基于 https 访问。
- 搭建web网站
 
    1  cd /etc/yum.repos.d/2  vim rpm.repo3  mount /dev/sr0 /mnt/4  cd 5  yum install httpd -y6  mkdir -pv /www/openlab7  vim /etc/hosts8  echo welcome to openlab ! > /www/openlab/index.html9  systemctl restart httpd10  cd /etc/httpd/conf.d11  vim vhost.conf12  systemctl restart httpd13  setenforce 014  firewall-cmd --permanent --add-service=http15  firewall-cmd --reload 
 
此步骤相关配置文件如下:
 
 
 
 
- 创建三个子界面
 
[root@localhost ~]# mkdir /www/openlab/student
[root@localhost ~]# mkdir /www/openlab/data
[root@localhost ~]# mkdir /www/openlab/money
[root@localhost ~]# echo welcome to openlab of student ! > /www/openlab/student/index.html
[root@localhost ~]# echo welcome to openlab of data ! > /www/openlab/data/index.html
[root@localhost ~]# echo welcome to openlab of money ! > /www/openlab/money/index.html
[root@localhost ~]# cat /www/openlab/student/index.html
welcome to openlab of student !
[root@localhost ~]# cat /www/openlab/data/index.html
welcome to openlab of data !
[root@localhost ~]# cat /www/openlab/money/index.html
welcome to openlab of money !
[root@localhost ~]#  
- 加密
 
   33  htpasswd -c /etc/httpd/user song34  htpasswd /etc/httpd/user tian35  cd /etc/httpd/conf.d36  vim vhost.conf37  systemctl restart httpd40  dnf install mod_ssl41  cd /etc/pki/tls/certs/42  openssl genrsa > jiami.key43  openssl req -utf8 -new -key jiami.key -x509 -days 100 -out jiami.crtYou are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [XX]:86
State or Province Name (full name) []:shanxi
Locality Name (eg, city) [Default City]:xian
Organization Name (eg, company) [Default Company Ltd]:xianopen
Organizational Unit Name (eg, section) []:rhce
Common Name (eg, your name or your server's hostname) []:www.openlab.com
Email Address []:admin44  mv jiami.key ../private/45  cd /etc/httpd/conf.d46  vim vhost.conf47  systemctl restart httpd48  setenforce 049  firewall-cmd --permanent --add-service=https50  firewall-cmd --reload 51  vim vhost.conf52  systemctl restart httpd 

 测试结果
 

 
 
 
 
 
