正则表达式、modrewrite php apache

发布于 2024-11-08 14:56:40 字数 184 浏览 0 评论 0原文

是否可以将其屏蔽:

www.site.com/latest_news/10518271191304876236

到此

www.site.com/latest_news/

但我仍然需要在 PHP 中访问“10518271191304876236”这部分作为 ID。

非常感谢

is it possible to mask this:

www.site.com/latest_news/10518271191304876236

to this

www.site.com/latest_news/

but i still need access in PHP to '10518271191304876236' this part as its used as an ID.

many thanks

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

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

发布评论

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

评论(1

落日海湾 2024-11-15 14:56:40

您可以像这样使用 .htaccess:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteRule ^(latest_news/)(.+)/?$ /$1?ID=$2 [QSA,NC,L]

这样 10518271191304876236 将作为查询参数 ID 传递到 /latest_news/ 内的 index.php 文件。

You can have .htaccess like this:

Options +FollowSymlinks -MultiViews
RewriteEngine on

RewriteRule ^(latest_news/)(.+)/?$ /$1?ID=$2 [QSA,NC,L]

With this 10518271191304876236 will be passed as query parameter ID to your index.php file inside /latest_news/.

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