apache只能域名访问网站
‘壹’ Linux web怎么设置只允许域名访问
要实现只用域名访问而不用IP访问,要看所使用的web服务器软件,以nginx为例,可以通过如下方法进行设置:
1、用vim打开nginx的配置文件,一般为nginx/conf/nginx.conf
2、在server的设置里面添加如下内容即可:
#禁止IP访问
server{
listen 80 default;
server_name _;
return 500;
}
或者
server {
listen 80 fault;
server_name _;
rewrite ^(.*) http://域名 permanent;
}
‘贰’ 怎么弄只能在局域网里面用域名访问但是外网不能访问的apache+php服务器
把域名解析到局域网ip地址就行了,
例如你有个域名somedomain.com,你的局域网ip:192.168.1.121
把做个A记录 somedomain.com 192.168.1.121 ,等域名DNS服务器解析生效后就ok了。
这样任何人访问somedomain.com都会被解析到 192.168.1.121 ,但是外网的人因为不在你那个局域网所以他用192.168.1.121 是访问不到你内网的资源的,只有你们内网的才行。
‘叁’ 怎么设置只能访问域名打开网站,禁止通过IP访问网站,急!!!
windows服务器IIS通过域名绑定主机头就可以做到。
Apache服务,建立多域名访问指向,默认设置的话,如果别人把域名指向IP,就会访问默认的站点,下面的设置可以禁止访问。修改http.conf文件,修改后重启APACHE才能生效:
<VirtualHost *:80>
ServerAdmin 你的IP地址
DocumentRoot "D:/WWW/ROOTNoSite"
DirectoryIndex index.html index.htm
<Directory "D:/WWW/ROOT/NoSite">
AllowOverride None
Options Indexes FollowSymLinks
Order Deny,Allow
Allow from all
</Directory>
</VirtualHost>
这样通过IP,或者没有在配制时添加的域名就直接访问到NoSite目录下面,NoSite目录下不要放置任何文件,或者把 Allow from all 修改为 Deny from all 禁止访问。
‘肆’ 怎么设置只能访问域名打开网站,禁止通过IP访问网站
1、在大批量某一字段ip访问你网站之前,会在不该出现的时间段,出现很多各个地方的访问ip,而且时间还很接近。而且,访问同一个页面,没有任何来撸,只有ip和时间。
‘伍’ Apache如何设置成不能通过IP访问网站,只能敲域名进网站
原则上是不可以的,因为有ip地址,才有域名,域名是ip地址衍生出来的,有个办法就是,同搜索引擎,具体的加分
‘陆’ 请问如何设置apache 主机头,只允许指定域名访问,禁止IP访问
1.为了防止域名解析恶意指向,我们需要禁止apache默认的空主机头,操作如下:vi /etc/httpd/conf/httpd.conf编辑配置文件,在你的站点配置之前再增加一个站点(红色字体部分是我们要增加的,蓝色字体部分代表你正在使用的站点配置)NameVirtualHost *ServerAdmin [email protected] /errorServerName abc.comServerAdmin [email protected] 你的站点路径ServerName yourWebsite.comServerAlias *.yourWebsite.com2.在httpd.conf 里面找不到像上面的NAMEVistualHost的话,就是他刚开始安装的时候就已经已经输入域名那些了,进入apache安装目录 编辑conf目录下的httpd.conf文件: 找到 # Virtual hosts #Include conf/extra/httpd-vhosts.conf 把Include conf/extra/httpd-vhosts.conf前面的#去掉,进入conf\extra\目录 编辑httpd-vhosts.conf文件加入NameVirtualHost *ServerAdmin [email protected] /errorServerName itmop.comServerAdmin [email protected] DocumentRoot D:/EmpireServer/web ServerName itmop.com ServerAlias
‘柒’ Apache只允许域名访问https的问题
SSL证书是根据域名签发的信任的,如果IP没有证书所以才会这样,但配置可以指定域名访问。
<VirtualHost 域名:443>
ServerName 域名
ServerAlias 域名
DocumentRoot /var/www/html
SSLEngine on
SSLProtocol all -SSLv2 -SSLv3
SSLCertificateFile /etc/ssl/server.crt
SSLCertificateKeyFile /etc/ssl/server.key
SSLCertificateChainFile /etc/ssl/server.ca-bundle
</VirtualHost>