国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JSP > 正文

JSP URL重寫-urlrewrite

2019-11-11 07:49:05
字體:
供稿:網(wǎng)友
URL重寫,其實(shí)就是把帶一大堆參數(shù)的url,變成一個看上去很規(guī)矩的url,主要目的是為了搜索引擎。舉例/viewthread.jsp?id=1234/viewthread.jsp?id=1235/viewthread.jsp?id=1236重寫后,可以用/viewthread/1234.htm/viewthread/1235.htm

/viewthread/1236.htm

首先引入urlrewrite-4.0.0.jar【或者其他版本】包,可以從官方下載。

1、web.xml【官方配置】

<?xml version="1.0" encoding="UTF-8"?><web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"	xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 	http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">	<display-name></display-name>	<welcome-file-list>		<welcome-file>index.jsp</welcome-file>	</welcome-file-list>	<!-- URL重寫配置 -->	<filter>		<filter-name>UrlRewriteFilter</filter-name>		<filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class>		<init-param>			<param-name>logLevel</param-name>			<param-value>WARN</param-value>		</init-param>	</filter>	<filter-mapping>		<filter-name>UrlRewriteFilter</filter-name>		<url-pattern>/*</url-pattern><!-- 攔截所有URL -->	</filter-mapping></web-app>2、urlrewrite.xml

<?xml version="1.0" encoding="utf-8"?><!DOCTYPE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 3.2//EN"        "http://tuckey.org/res/dtds/urlrewrite3.2.dtd"><!--    Configuration file for UrlRewriteFilter    http://tuckey.org/urlrewrite/--><urlrewrite>     <!--自定義匹配-->     <rule>           <!--  <from>^/admin/(.*)(.*)</from>   -->        <from>admin/([0-9]+)/(.*).shtml/(.*)</from>        <to>/admin_login.jsp?id=$1&amp;name=$2&amp;keyWord=$3</to>      </rule>       <!-- 官方示例-->    <rule>        <note>            The rule means that requests to /test/status/ will be redirected to /rewrite-status            the url will be rewritten.        </note>        <from>/test/status/</from>        <to type="redirect">%{context-path}/rewrite-status</to>    </rule>    <outbound-rule>        <note>            The outbound-rule specifies that when response.encodeURL is called (if you are using JSTL c:url)            the url /rewrite-status will be rewritten to /test/status/.            The above rule and this outbound-rule means that end users should never see the            url /rewrite-status only /test/status/ both in thier location bar and in hyperlinks            in your pages.        </note>        <from>/rewrite-status</from>        <to>/test/status/</to>    </outbound-rule>    <!--    INSTALLATION        in your web.xml add...        <filter>            <filter-name>UrlRewriteFilter</filter-name>            <filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class>            <init-param>                <param-name>logLevel</param-name>                <param-value>WARN</param-value>            </init-param>        </filter>        <filter-mapping>            <filter-name>UrlRewriteFilter</filter-name>            <url-pattern>/*</url-pattern>        </filter-mapping>     EXAMPLES     Redirect one url        <rule>            <from>/some/old/page.html</from>            <to type="redirect">/very/new/page.html</to>        </rule>    Redirect a directory        <rule>            <from>/some/olddir/(.*)</from>            <to type="redirect">/very/newdir/$1</to>        </rule>    Clean a url        <rule>            <from>/PRoducts/([0-9]+)</from>            <to>/products/index.jsp?product_id=$1</to>        </rule>    eg, /products/1234 will be passed on to /products/index.jsp?product_id=1234 without the user noticing.    Browser detection//瀏覽器檢測        <rule>            <condition name="user-agent">Mozilla/[1-4]</condition>            <from>/some/page.html</from>            <to>/some/page-for-old-browsers.html</to>        </rule>    eg, will pass the request for /some/page.html on to /some/page-for-old-browsers.html only for older    browsers whose user agent srtings match Mozilla/1, Mozilla/2, Mozilla/3 or Mozilla/4.    Centralised browser detection        <rule>            <condition name="user-agent">Mozilla/[1-4]</condition>            <set type="request" name="browser">moz</set>        </rule>    eg, all requests will be checked against the condition and if matched    request.setAttribute("browser", "moz") will be called.    --></urlrewrite>3、項(xiàng)目結(jié)構(gòu):

4、admin_login.jsp頁面代碼:

<body>	Admin Login Page.	<br>	<%=request.getParameter("id")%><br>	<%=request.getParameter("name")%><br>	<%=request.getParameter("keyword")%></body>測試結(jié)果:


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 甘孜县| 淮滨县| 德安县| 通渭县| 卓尼县| 湘潭县| 道孚县| 泾川县| 漳州市| 汝阳县| 凤山县| 曲周县| 五原县| 会东县| 聂拉木县| 荣昌县| 江达县| 巴南区| 榆林市| 招远市| 疏附县| 惠州市| 南皮县| 清镇市| 习水县| 油尖旺区| 临海市| 宣威市| 大港区| 鱼台县| 镇宁| 侯马市| 壤塘县| 察雅县| 尉氏县| 福州市| 临湘市| 思茅市| 平安县| 林甸县| 青浦区|