如何在 Apache 的 URL 中执行不带文件扩展名的重定向
如果页面没有指定扩展名,而不将用户物理重定向到实际的 URL,是否有一种通用方法可以将一个页面指向另一个页面?
e.g.
http://www.mydomain.com/ points to http://www.mydomain.com/public
http://www.mydomain.com/auth points to http://www.mydomain.com/public/auth
http://www.mydomain.com/auth/process points to http://www.mydomain.com/public/auth/process
http://www.mydomain.com/auth/process/done points to http://www.mydomain.com/public/auth/process/done
Is there a GENERIC way to point a page to another page if the page has no extension specified without physically redirecting the user to the actual URL?
e.g.
http://www.mydomain.com/ points to http://www.mydomain.com/public
http://www.mydomain.com/auth points to http://www.mydomain.com/public/auth
http://www.mydomain.com/auth/process points to http://www.mydomain.com/public/auth/process
http://www.mydomain.com/auth/process/done points to http://www.mydomain.com/public/auth/process/done
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许这就是您所需要的:
编辑:
添加此 RewriteCond 来检查扩展:
Maybe this is what you need:
Edit:
Add this RewriteCond to check for an extension:
是的,您可以通过重写规则来做到这一点,但您应该了解一些有关 URL 或有关 URL 的一些条件,以防止重写其他 URL。
例如,您给定 URL 的重写规则是:
yes , you can do it by rewrite rules but you should know something about URL or some conditions about that to prevent rewritting other URLs.
for example rewrite rule for your given URL is: