在下面我们将实现利用test.mytest.com访问 根目录下面的test目录

 

这里以腾讯云为例子:

首先你得具备一个云主机 有一个公网ip

有一个主域名 www.mytest.com为例子

www.mytest.com已经解析到你的公网ip

添加记录

这里记录纸应该填写你的公网ip

 

 这里添加记录大概10分钟即可使用该记录

找到你的apache配置文件

find / -name httpd.conf

打开该文件或者

vi $(find / -name httpd.conf)

 

 

添加

<VirtualHost *:80>
DocumentRoot /var/www/test
ServerName test.mytest.com
<Directory "/var/www/test">
Options -Indexes +FollowSymlinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>

 

或者

 #开启url重写模式

RewriteEngine on
 
 
在网站根目录中.htaccess填写
 

 

<VirtualHost *:80>
DocumentRoot /var/www/test
ServerName test.mytest.com
<Directory "/var/www/test">
Options -Indexes +FollowSymlinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>

 

填写完后

apachectl restart 重启apachectl

到 /var/www目录下创建一个目录test

在test中添加index.html

地址栏输入

test.mytest.com/index.html即可访问

 

 

最后补充一点:

在国内申请空间是需要域名备案的,如果没有备案后期网站上线运营过程当中可能被查到并且 强制下线

在国外是不需要备案的,但这样访问是相当耗时间的,访问过国外网站的应该有过这种体验,打开一个网站比打开国内的多花几十秒钟,甚至都打不开

备案需要服务商备案和公安备案

公安备案相比起来相当麻烦 需要无犯罪证明和个人的身份证件以及域名证书

posted on 2019-07-29 09:40  渐凸强、啊哈  阅读(1225)  评论(6编辑  收藏  举报