首页 > 技术文章 > httpd 不带反斜杠 出现 301重定向

ayanmw 2014-06-09 17:02 原文

 

[root@VM_64_69_centos httpd]# curl http://localhost:9001/pay
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>301 Moved Permanently</title>
</head><body>
<h1>Moved Permanently</h1>
<p>The document has moved <a href="http://localhost:9001/pay/">here</a>.</p>
<hr>
<address>Apache/2.2.15 (CentOS) Server at localhost Port 9001</address>
</body></html>
[root@VM_64_69_centos httpd]# curl http://localhost:9001/pay/
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access /pay/
on this server.</p>
<hr>
<address>Apache/2.2.15 (CentOS) Server at localhost Port 9001</address>
</body></html>
[root@VM_64_69_centos httpd]#

 

尼玛,叫我情何以堪啊....

ps:[403没有权限是正常的,因为没有默认执行文件index.php等.]

 

推荐阅读