使用域名访问apache2网站而不是服务器的IP

时间:2014-07-20 12:33:37

标签: apache .htaccess ip

如标题所示,我想仅使用域名访问apache2网站而不是服务器的IP。

我想在尝试使用服务器的IP访问网站时收到错误403.

怎么可能?

感谢

1 个答案:

答案 0 :(得分:0)

我在这个帖子的帮助下成功了:https://serverfault.com/questions/511...uses-the-ip-ad

最后,我将其添加到/etc/apache2/sites-available/default.conf中:

        <Directory /var/www/>

RewriteEngine On
RewriteCond %{HTTP_HOST} ^xx\.xx\.xx\.xx
RewriteRule ^(.*)$ - [F,L]

[...]
        </Directory>

现在,直接输入我的IP地址时出现403错误,我只能通过输入域名来访问我的网站。

谢谢大家。