正则表达式、modrewrite php apache
是否可以将其屏蔽:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以像这样使用 .htaccess:
这样
10518271191304876236
将作为查询参数ID
传递到/latest_news/
内的 index.php 文件。You can have .htaccess like this:
With this
10518271191304876236
will be passed as query parameterID
to your index.php file inside/latest_news/
.