本地服务器上每个项目的 httpd.conf 重写规则
我在同一台本地服务器上托管多个项目,并且想知道是否可以将每个项目的重写规则放在 httpd.conf 文件中,而不是放在每个项目的 .htaccess 文件中。
httpd.conf 文件中的语法是否与 .htaccess 完全相同,因为我以前从未使用过它?
谢谢。
I am hosing multiple projects on the same local server and was wondering if it was possible to put the rewrite rules for each project in the httpd.conf file rather than in the .htaccess file for each project.
Is the syntax exactly the same in the httpd.conf file to .htaccess because I've never used it before?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有可能:
在 .htaccess 文件中使用 mod_rewrite 和在 .htaccess 文件中使用 mod_rewrite 之间的主要区别在不同的 上下文 中是以下模式的语法
RewriteRule
:因此,虽然路径前缀之前已被删除,因此也必须从模式中删除,但在任何其他上下文中使用时必须提供完整路径。
Yes, it is possible:
The main difference between using mod_rewrite in an .htaccess file and in a different context is the syntax of the pattern of
RewriteRule
:So while the path prefix is removed before and thus must also be removed from the pattern, the full path must be provided when using in any other context.