ssh能把一个特定的url设置成另外的url么?

比如说 http://localhost:8080/sqb/manage/manage.html这个url 我能改成http://localhost:8080/sqb/manage/xxx 吗?

楼上正解 使用urlrewrite
使用nginx转发配置如下:
[code="java"]rewrite ^/sqb/manage/manage.html$ /sqb/manage/xxx last;[/code]

或者直接使用urlrewriter,导入urlrewrite的jar包(http://tuckey.org/urlrewrite/#download),配置如下
[code="java"]



/sqb/manage/manage.html

/sqb/manage/xxx



[/code]

urlrewrite