方法一:

※首先修改源文件,再进行 make && make install 编译安装 编辑源文件/usr/local/apache2/include/ap_release.h 文件 [root@Nagios-Server include]# vimap_release.h

#define AP_SERVER_BASEPRODUCT "IIS"

#define AP_SERVER_MAJORVERSION_NUMBER 7

#define AP_SERVER_MINORVERSION_NUMBER 0

#define AP_SERVER_PATCHLEVEL_NUMBER      0

#define AP_SERVER_DEVBUILD_BOOLEAN      0 编辑源文件/usr/local/apache2/include/os.h 文件 [root@Nagios-Server include]# vimos.h

#define PLATFORM "Win32" 方法二:

[root@Nagios-Server include]# vim /usr/local/apache2/conf/httpd.conf

# Various default settings

Include conf/extra/httpd-default.conf

[root@Nagios-Server include]# vim /usr/local/apache2/conf/extra/httpd-default.conf

#ServerTokens Prod

#ServerSignature off

HTTP/1.1 200 OK

Date: Sun, 07 Dec 2014 11:55:51 GMT

Server: Apache/2.2.23 (Unix) PHP/5.4.1   #此处无法去掉,若要隐藏,只有用方法一
Last-Modified: Sat, 06
Dec 2014 07:22:37 GMT

ETag: "42760-19-509870ed29d1c" Accept-Ranges: bytes

Content-Length: 25

Content-Type: text/html

Apache rewrite 规则的配置

安装模块 mod_rewrite.so

修改 httpd.conf 文件开启 mode_rewrite.so

vim /etc/httpd/conf/httpd.conf

LoadModule rewrite_module modules/mod_rewrite.so ##检查确定开启此行

创建基于域名的虚拟主机

[root@localhost ~]# vim /etc/httpd/conf.d/vhosts.conf

<VirtualHost *:80>
ServerAdmin  
 hunk.test.com DocumentRoot   "/var/www/html/hunk" ServerName   192.168.10.201

RewriteEngine on               ##打开 rewirte 功能 Include conf.d/hunk-rewrite.conf

</VirtualHost>

rewrite 规则

[root@localhost ~]# vim /etc/httpd/conf.d/hunk-rewrite.conf

RewriteCond %{HTTP_HOST} hunk.test.com [NC]

RewriteRule
 ^(.*)/index.html$  http://hunk.test.com/test.html[L,R=302]

/var/www/html/hunk 添加测试页面。

[root@localhost ~]# vim /var/www/html/hunk/index.html

<html>

<title>

test page

</title>

</head>

<body >

<p align="center">

<font size="32px" color="red">

this is test page !page jump failure!

</font>

</p>

</body>

</html>

[root@localhost ~]# vim /var/www/html/hunk/hunk.html

<html>

<head>

<title>

test page

</title>

</head>

<body >

<p align="center">

<font size="32px" color="red">

this
is test page !page jump success!

</font>

</p>

</body>

</html>

修改 hosts 文件

xp:C:\Windows\System32\drivers\etc\hosts

192.168.10.246 hunk.test.com  ##添加此行
访问 hunk.test.com/index.html

this is test page !page jump success!
[root@localhost ~]# vim /etc/hosts

192.168.10.40         hunk.test.com

[root@localhost ~]# elinks --dump hunk.test.com/index.html

this is test page !page jump success!

注意事项

1.书写
rewrite 需要知道正则表达式的知识。

在 RewriteRule
 ^(.*)/index.html$
 http://hunk.test.com/test.html[L,R=302]中,^表示以某 某开头,$表示以某某结尾, .(点)表示匹配任意单个字符,*表示匹配前面的子表达式零次或多次(大

于等于 0 次)

2.这里搭建的是基于域名的虚拟主机的 web
服务器,所以下面两行代码是在

/etc/httpd/conf.d/vhosts.conf 书写。说明是此服务器也就是 hunk.test.com 打开 rewrite 功能,

并应用规则。

RewriteEngine on                  ##打开
rewirte 功能

Include conf.d/hunk-rewrite.conf

如果不是基于虚拟主机的 web 服务器,上面两行需要在/etc/httpd/conf/httpd.conf 书写。

隐藏系统和 Apache 的版本信息的更多相关文章

  1. centos apache 隐藏和伪装 版本信息

    1.隐藏Apache版本信息 测试默认 apache 的状态信息[root@1314it conf]# curl -Is localhostHTTP/1.1 200 OKDate: Tue, 16 N ...

  2. 查看nginx | apache | php | tengine | tomcat版本的信息以及如何隐藏版本信息【转】

    转自: 查看nginx | apache | php | tengine | tomcat版本的信息以及如何隐藏版本信息 - 追马 - 51CTO技术博客http://lovelace.blog.51 ...

  3. The server of Apache (四)——配置防盗链和隐藏版本信息

    一.防盗链 防盗链就是防止别人的网站代码里面盗用我们服务器的图片.文件.视频等相关资源,比如我们的网页的图片有链接,别人把链接复制粘贴到他们的服务器页面里,图片不在他们自己的网站里,每次打开他们的网站 ...

  4. linux,apache,mysql,php常用查看版本信息的方法

    1. 查看linux的内核版本,系统信息,常用的有三种办法: uname -a; cat /proc/version; -bash-4.2$ uname -a Linux apphost -.el7. ...

  5. linux,apache,php,mysql常用的查看版本信息的方法

    1. 查看linux的内核版本,系统信息,常用的有三种办法:   uname -a:   more /etc/issue;    cat /proc/version; 2. 查看apache的版本信息 ...

  6. 在HTTP响应标题中隐藏ASP.NET MVC的版本

    在默认情况下,ASP.NET MVC网站会在HTTP响应标题(Response Header)中动态添加目前使用的ASP.NET MVC版本编号.如果使用Fiddler Web Debugger工具查 ...

  7. nginx/apache/php隐藏http头部版本信息的实现方法

    有时候我们需要隐藏我们的服务器版本信息,防止有心人士的研究,更安全,这里介绍下在nginx/apache/php中如何隐藏http头部版本信息的方法. nginx隐藏头部版本信息方法 编辑nginx. ...

  8. apache安全之修改或隐藏版本信息

    修改apache版本信息    在安装之前,编辑原文件httpd-2.2.31/include/ap_release.h文件如下:     40 #define AP_SERVER_BASEVENDO ...

  9. apache、php隐藏http头部版本信息的实现方法

    1.apache隐藏头部版本信息,编辑httpd.conf文件,找到: ServerTokens OS ServerSignature On 修改为: ServerTokens ProductOnly ...

随机推荐

  1. HTTP访问控制(CORS)踩坑小记

    前几天在帮后端排查一个cors的问题的时候发现的一些小坑特此记录 ** cors的本质是出于安全原因,浏览器限制从脚本内发起的跨源HTTP请求. 例如,XMLHttpRequest和FetchAPI遵 ...

  2. js测试用

    一,大纲 二,目录二 三,目录三

  3. 关于Anaconda的虚拟环境操作

    # 1.创建虚拟环境 conda create -n env_name python==版本号 # 2.激活虚拟环境 conda activate env_name # 3.下载相关模块 pip in ...

  4. angular 的跨域处理

    angular 的跨域处理,由于不并不支持跨域处理,所以我们对他也是无可奈何,angular 的跨域处理,需要我们在服务器上进行处理,把请求的数据改成 * ,也就是,谁都可以请求数据: angular ...

  5. bootstrap 讲解(中)

    bootstrap:常用于后台开发,如学生管理系统,虽然稍显笨重,但也是一个开发的利器 推荐下载 3.3.7 版本 也可下载最新版4.3.1 (最新版在手机端不起效果) 且依赖 jQuery 的封装库 ...

  6. JS - 语音

    语音识别 浏览器支持的还不是很好 语音播放 speechSynthesis.speak(new SpeechSynthesisUtterance('只要是活着的东西,神也杀给你看')); 参见 Web ...

  7. httpd启动显示Could not reliably determine the server's fully qualified domain name, using 127.0.0.1. Set the 'ServerName'

    AH00557: httpd: apr_sockaddr_info_get() failed for masterAH00558: httpd: Could not reliably determin ...

  8. windows7如何用键盘模拟鼠标操作

    windows7如何用键盘模拟鼠标操作 https://jingyan.baidu.com/article/6dad5075104907a123e36e38.html 听语音 37453人看了这个视频 ...

  9. 【ABAP系列】SAP ABAP系统变量及注释

    公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[ABAP系列]SAP ABAP系统变量及注释 ...

  10. maven 异常 提示 cannot be read or is not a valid ZIP file

    Archive for required library: 'D:/repository/Maven/org/springframework/spring-aop/4.3.6.RELEASE/spri ...