http://www.qingke800.com/company/eat-show/6935
类似这种没有后缀名的超连接。也没有.do。。我有struts能作出来这种效果么??

解决方案 »

  1.   

    最新技术......有马那年就有的技术在Web.xml里面配置URL映射即可
      

  2.   

    呵呵,那个“do”只不过是大家惯常使用而成的一种习惯罢了啦,并不是一定要用do的
      

  3.   

    一般的web服务器都有相关的设置的!
      

  4.   

    你改下web.xml就可以了,可以自定义后缀的
      

  5.   

    不是什么新技术,在Web.xml里面配置一下就可以了
      

  6.   

    UrlRewrite Filter技术,重写URL,具体开发步骤可以到我的BLOG看看:
    http://blog.csdn.net/lip009/archive/2006/10/17/1338076.aspx
      

  7.   

    楼上的blog不错 得踩一脚@_@
      

  8.   

    UrlRewrite Filter虽然可以重写url但是,举个例子:
    <rule>
            <from>/login.html</from>
            <to type="redirect">/ms/shop/login.jsp</to>
        </rule>
    的确我url输入 http://localhost:8080/ms/login.html  等同于 http://localhost:8080/ms/shop/login.jsp
    但是,打开登陆页后,url显示为:http://localhost:8080/ms/shop/login.jsp
    能否让url保持 http://localhost:8080/ms/login.html  ????请老大们支持一下把!!!谢了
      

  9.   

    URL是一直保持http://localhost:8080/ms/login.html这个的,不会显示真实URL的
    你测试了没有啊?我晕
      

  10.   

    我也是这么认为的,但测了下,不是,我很奇怪。
    我下的是urlrewritefilter-3.0.zip之后把.jar和urlrewrite.xml都拷过去了。web.xml的filter是粘的,我就改了下urlrewrite.xml。没动原始内容,urlrewrite.xml内容如下:
    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE urlrewrite PUBLIC "-//tuckey.org//DTD UrlRewrite 3.0//EN"
            "http://tuckey.org/res/dtds/urlrewrite3.0.dtd"><!--    Configuration file for UrlRewriteFilter
        http://tuckey.org/urlrewrite/-->
    <urlrewrite>    <rule>
            <note>
                The rule means that requests to /test/status/ will be redirected to /rewrite-status
                the url will be rewritten.
            </note>
            <from>/log.html</from>
            <to>/ms/shop/login.jsp</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>/shop/([0-9]+)</from>
              <to>/ms/showshop.do?id=$1</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>/log.html</from>
            <to type="redirect">/ms/shop/login.jsp</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.    --></urlrewrite>
      

  11.   

    why???为什么他会把真实的url显示出来!??
      

  12.   

    <to type="redirect">/very/new/page.html</to>
    --->
    redirect?没用过这个开源的jar不过,我觉得<to type="forward">/very/new/page.html</to>应该是这个它们的区别得搞清楚
      

  13.   

    改成forword好了,是没有问题了,可是http://localhost:8080/ms/login.html 进入登陆页所有图片都不可用了。郁闷,右键属性一看,url,尺寸都有,就是类型不可用,真不知道是怎么回事,敲http://localhost:8080/ms/shop/login.jsp进入登陆页就没事。哥哥,什么原因啊!??
      

  14.   

    <rule>
            <from>/login.html</from>
            <to type="redirect">/ms/shop/login.jsp</to>
     </rule>
    type="redirect"这里的redirect去掉就好了
      

  15.   

    这个是图片路径的问题是个低级问题写绝对路径比如图片是../images/a.jpg改成/你的项目名称/images/a.jpg/你的项目名称 也可以通过request.getContextPath()取得
      

  16.   

    好的,我呀,也只好挨个给img 的src了。