如何显示不同的url从实际的状态栏

How to show different url from actual one in status bar

本文关键字:url 状态栏 何显示 显示      更新时间:2023-09-26

我有以下按钮,重定向到给定的页面按钮单击。我希望状态栏显示的url不是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>

这样做的简单方法是将index2.html重命名为GetDetails.html,并将操作url更改为GetDetails,而不需要任何扩展。接下来也是最后一件要做的事情是使用.htaccess从url中删除扩展。记住,你必须使用服务器读取你的。htaccess.

这将在服务器上完成。

例如,如果您使用的是Apache服务器,则使用URL Rewrite: http://httpd.apache.org/docs/2.0/misc/rewriteguide.html