这种情况下如何进行URL屏蔽呢?
我在 1 个网站上使用 php、js、flash 和 mysql。
我想使用框架集(或者可能是 iframe)进行 URL 屏蔽。场景:
用户单击一个链接,该链接将他/她定向到我的页面,网址为:
www.domain.com/index.php?var1
=string1&var2=string2 如何屏蔽网址,以便访问者只能看到 www .domain.com/index.php,但实际上那里有一些变量。我需要变量,但我不希望访问者看到。如何对此进行 URL 屏蔽? (我不期望得到任何代码,我只是想知道url屏蔽方法的逻辑)
PS。我可能不会使用 mod_rewrite,因为我不知道如何使用/编写代码。所以请用 iframe/frameset 方法回答:)
I am using php, js, flash and mysql on 1 website.
I want to do a URL masking using frameset(or maybe iframe). Scenario:
An user click on a link, which direct him/her to my page with this url:
www.domain.com/index.php?var1=string1&var2=string2
How to mask the url so that visitor can only see www.domain.com/index.php, but actually there are some variables over there. I need the variables, but i dont want the visitors to see. How to do URL masking on this? (I dont expect to get any code, I just want to know the logic of the url masking method)
PS. I probably would not use mod_rewrite, because I dont know how to use/write the code. So please, answer with iframe/frameset methods :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:我想我误解了你的问题,所以这是另一种尝试:
在
www.yourdomain.com/index.php
中:此示例将启动一个会话并将用户重定向到自身,而无需存储任何内容查询字符串中的参数。当然,只有当用户启用了 cookie 时它才会起作用。
EDIT: I think I misunderstood your question, so here is another attempt:
In
www.yourdomain.com/index.php
:This example will start a session and redirect the user to itself without needing to store any parameters in the query string. Naturally, it will only work if the user has cookies enabled.
您可以将该参数作为 POST 数据提交吗?
例如:
当用户单击链接时,表单将使用 POST 参数 var1 和 var2 提交到 index.php。用户永远不会在其 URL 中看到此参数(尽管仍然可以使用各种工具查看)。
Can you submit that parameters as POST data?
For example:
When user clicks on the link, the form will be submitted to index.php with POST parameters var1 and var2. User will never see this parameters in their URL (still possible to see with various tools though).