首页 > 代码库 > httpd 不带反斜杠 出现 301重定向

httpd 不带反斜杠 出现 301重定向

你看到的这个文章来自于http://www.cnblogs.com/ayanmw

 

[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等.]

 

转载请注明出处:http://www.cnblogs.com/ayanmw 我会很高兴的!