没有域名的 Apache 虚拟主机
2022-08-30 18:28:51
我有一个安装了apache2的VPS,我想访问一些PHP项目,没有域名,只有IP地址。例如:
http://162.243.93.216/projecta/index.php
http://162.243.93.216/projectb/index.php
我还有其他带有域的项目,如 example.com,在我的目录/var/www/
/html/
info.php
/projecta/
/projectb/
/example/
当我去
http://162.243.93.216/info.php then /var/www/html/info.php is opened.
我的文件 000-default.conf
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/html
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>