配置域名
Posted ksy_c
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置域名相关的知识,希望对你有一定的参考价值。
/etc/hosts
配置:
127.0.0.1 localhost www.ismei.com
其他:
打开配置文件:
/etc/apache2/sites-available$ ls -al
/etc/apache2/sites-available$ sudo gedit 000-default.conf
配置域名:
<VirtualHost *:80>
ServerName www.ismei.com //自定义
ServerAdmin [email protected]
DocumentRoot /var/www/html/ismei //目录地址
<Directory "/var/www/html/ismei"> //目录地址
Options all
AllowOverride None
Order allow,deny
Allow from all
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
以上是关于配置域名的主要内容,如果未能解决你的问题,请参考以下文章