使用 .htaccess 重写 URL,查询字符串作为文件名
如果我的网址是 http://www.xyz.com/index.php?view=abc 那么它应该打开 http://www.xyz.com/abc.php
我应该在 .htaccess 中写什么? ?
提前致谢。
If my URL is http://www.xyz.com/index.php?view=abc
then it should open
http://www.xyz.com/abc.php
What should I write in .htaccess??
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不需要 .htaccess ,只需放入 index.php
确保根目录中没有任何其他易受攻击的 php 文件(但我建议使用其他/更好的技术来检查 url 中的用户输入)。
如果您想以相反的方式重写,您的
.htaccess
可能类似于以下内容:You don't need .htaccess for that, simply put in index.php
Be sure not to have any other vulnerable php files in your root directory (but I'd recommend using other/better techniques to check the user input from the url).
If you wanted to have the rewriting the other way round, your
.htaccess
could look similar to this: