如何在状态栏中显示实际的url

时间:2016-11-07 16:26:15

标签: javascript html

我有以下按钮,在按钮点击时重定向到给定页面。我想要而不是http://localhost:8181/RestServiceProject/index2.html此状态栏显示在状态栏上,它显示http://localhost:8181/RestServiceProject/GetDetails

如何在html中执行此操作?



<form action="http://localhost:8181/RestServiceProject/index2.html">
<button type="submit">Get Order Details</button>
</form>
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:0)

这样做的简单方法是将index2.html重命名为GetDetails.html,并将动作网址更改为GetDetails而不进行任何扩展。接下来要做的就是使用.htaccess see more info here从网址中删除扩展程序。请记住,您必须使用能读取.htaccess的服务器。

答案 1 :(得分:-1)

这将由服务器完成。

例如,如果您正在使用Apache服务器,请使用URL Rewritehttp://httpd.apache.org/docs/2.0/misc/rewriteguide.html