黑马程序员技术交流社区

标题: 在做防盗链的时候弹404,纠结死了 [打印本页]

作者: hhmm665544    时间: 2014-4-20 22:49
标题: 在做防盗链的时候弹404,纠结死了
  1. public void doGet(HttpServletRequest request, HttpServletResponse response)
  2.                         throws ServletException, IOException {

  3.                 String referer = request.getHeader("referer");
  4.                 if(referer==null || !referer.startsWith("http://localhost")){
  5.                         response.sendRedirect("/day6/index.jsp");
  6.                         return;
  7.                 }
  8.                 response.setCharacterEncoding("UTF-8");
  9.                 response.setContentType("text/html;charset=UTF-8");
  10.        
  11.                
  12.                 String data = "采访凤姐日记";
  13.                 response.getWriter().write(data);
  14.         }
复制代码
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%
  3. String path = request.getContextPath();
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  5. %>

  6. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  7. <html>
  8.   <head>
  9.     <base href="<%=basePath%>">
  10.    
  11.     <title>My JSP 'index.jsp' starting page</title>
  12.         <meta http-equiv="pragma" content="no-cache">
  13.         <meta http-equiv="cache-control" content="no-cache">
  14.         <meta http-equiv="expires" content="0">   
  15.         <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  16.         <meta http-equiv="description" content="This is my page">
  17.         <!--
  18.         <link rel="stylesheet" type="text/css" href="styles.css">
  19.         -->
  20.   </head>
  21.   
  22.   <body>
  23.     <a href="/day6/servlet/ResponseDemo3">查看图书</a></br>
  24.     <a href="/day6/servlet/ResquestDemo4">看凤姐</a></br>
  25.     <a href="/day6/servlet/RequestDemo1">查看URL</a>
  26.   </body>
  27. </html>
复制代码

第一次输入的时候会跳转到主页去,从主页点了就出现404了





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2