基于随机密钥的.htaccess重定向

发布于 2024-12-12 02:38:52 字数 428 浏览 0 评论 0原文

我正在尝试基于随机密钥进行重定向,如下所示: domainnamedotcom/XZI9F01ZmYj4olGAB4Hh

我希望将其重定向到:

http://domainnamedotcom/application .php?i=XZI9F01ZmYj4olGAB4Hh

这是对我来说显然是新领域,我认为这会起作用, 但事实并非如此...

RewriteEngine On
RewriteRule ^([a-zA-Z_]+)/([0-9]+)$ application.php?i=$1

有谁知道如何解决这个问题?

I am trying to do a redirect based on a random key, like this:
domainnamedotcom/XZI9F01ZmYj4olGAB4Hh

I would like this to redirect to:

http://domainnamedotcom/application.php?i=XZI9F01ZmYj4olGAB4Hh

This is clearly new territory for me, I thought this would work,
but it isn't...

RewriteEngine On
RewriteRule ^([a-zA-Z_]+)/([0-9]+)$ application.php?i=$1

Does anyone know how to tackle this?

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

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

发布评论

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

评论(1

沉鱼一梦 2024-12-19 02:38:52

假设您的密钥只是字母数字,这将起作用。

RewriteEngine On
RewriteBase /
RewriteRule ^([a-zA-Z0-9]+)$ application.php?i=$1

您的问题是 正则表达式 不是您所需要的。

Assuming your key is only alphanumeric this will work.

RewriteEngine On
RewriteBase /
RewriteRule ^([a-zA-Z0-9]+)$ application.php?i=$1

The problem with yours was that the regular expression wasn't what you needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文