我有一个安装了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
从guest虚拟机访问虚拟主机(oracle虚拟机)
通配符虚拟主机Ubuntu
与正则Expression式的Apache虚拟主机定义
将Google云端硬盘目录用作Apache虚拟主机
Apache – 限制到IP不能正常工作
<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>
Nginx反向代理设置,连接到上游时,768个worker_connections是不够的
如何在Nginx中configurationdynamiCSSLconfigurationdynamic虚拟主机?
Apache VirtualHost:如何Servername一个不同于80的端口
不同的VirtualHosts具有相同的端口
虚拟子域:每个用户一个子域
" http://162.243.93.216/info.PHP then /var/www/HTML/info.PHP is opened "
我假设这已经起作用了(如果没有,取消注释在下面的conf中显示的serverAlias行)
你现在想要映射
http://162.243.93.216/projecta/到/var/www/projecta
http://162.243.93.216/projectb/到/var/www/projectb
为此,您需要使用Apache Alias指令。
将你的000-default.conf文件更新为:
<VirtualHost *:80> # serverAlias 162.243.93.216 serveradmin webmaster@localhost documentRoot /var/www/HTML Alias /projecta /var/www/projecta Alias /projectb /var/www/projectb <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>
创建一个新的虚拟主机文件,并像这样设置:
<VirtualHost *:80> serveradmin webmaster@localhost serverAlias 192.168.1.1 documentRoot /somewhere/public_HTML <Directory /somewhere/public_HTML/> Options Indexes FollowSymlinks multiviews ExecCGI AllowOverrIDe Authconfig fileInfo Require all granted </Directory> </VirtualHost>
添加serveralias,它会识别IP地址以及…如果你想添加更多的IP地址(如本地网络第二接口),你可以添加更多的serveralias行…
总结以上是内存溢出为你收集整理的没有域名的Apache虚拟主机全部内容,希望文章能够帮你解决没有域名的Apache虚拟主机所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)