htaccess、url 重写和查询字符串问题

发布于 2024-12-11 16:11:21 字数 132 浏览 0 评论 0原文

我想要一个像这样的 URL www.mydomain.com/19127axbj1 ,基本上当执行此操作时,所调用的是 www.mydomain.com/parser.php?id=19127axbj1 。我该怎么做?这可能吗?我看到很多网站都这样做

I wanted to have a URL like this www.mydomain.com/19127axbj1 and basically when this is executed what is being called is www.mydomain.com/parser.php?id=19127axbj1. How can I do this? Is this even possible? I see a lot of sites doing this

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酷到爆炸 2024-12-18 16:11:21

在 Web 根目录的 .htaccess 文件中使用以下重写规则:

RewriteEngine on
RewriteRule ^([^/]+)/?$ parser.php?id=$1 [QSA,L]

Use the following rewrite rule in a .htaccess file at web root:

RewriteEngine on
RewriteRule ^([^/]+)/?$ parser.php?id=$1 [QSA,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文