Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以隐藏 url 的最后一部分(之后?)并在浏览器导航栏中仅显示 video.php 或其他内容?
http://mysite.com/video.php?url=thisisvideono66
问候
我会使用 PHP 的POST提交方法form来避免这些字符。要访问接收页面上的变量,请使用$_POST["VARIABLE"];
POST
form
$_POST["VARIABLE"];
如果您可以访问 HTML/JSP 代码而不是使用HTTP POST这种HTTP GET方式,您可以隐藏请求参数。或者,如果您想在应用程序范围内实现它,请使用 URL 重写器。
HTTP POST
HTTP GET