htaccess - 删除页面数字 ID
是否可以引导用户输入此 URL
http://www.website. com/de/variable-page-name
并显示此页面(但浏览器网址保留为上述 URL)
http://www.website.com/de/123/variable-page-name
其中 123 是一个变量,可以包含任意数量的数字 其中variable-page-name是一个变量,并且会有连字符,
我是这方面的初学者,并尝试阅读示例,但仍然无法弄清楚。 感谢您的帮助 - 谢谢!
Is it possible to direct for a user to type in this URL
http://www.website.com/de/variable-page-name
and have this page show (but browser web address to remain as above URL)
http://www.website.com/de/123/variable-page-name
where 123 is a variable and can contain any number of digits
where variable-page-name is a variable and will have hyphens in
I'm a beginner at this and have tried to read examples but still can't figure it out.
Your help is appreciated - thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
变量123从哪里来?计算 123 的变量输入是什么?
您可以执行以下操作
,将 de/somepage 重定向到 de/123/somepage。
此外,当然您可以使用 php 在服务器端进行重定向,而无需 htaccess
Where will the variable 123 come from? what is the variable input to compute 123?
you can do the following
than de/somepage will be redirected to de/123/somepage.
In addition of course you can do redirects without htaccess on server side using php
您可以使用 mod_rewrite
You can use mod_rewrite
你可以尝试这个规则:(它不会改变浏览器中的URL)
You can try this rule: (it won't change the URL in the browser)