使用 httpd.conf 进行 301 重定向
我在某处读到,不建议使用 .htaccess 进行 301 重定向,更好的做法是使用 httpd.conf,
- 这是真的吗?为什么 ?
- 我们可以在 httpd.conf 中使用 regexp - 就像使用 .htaccess 一样吗?
I read somewhere that using .htaccess for 301 redirect is not recommended and that a better practice will be to use httpd.conf
- is that true ? why ?
- can we use regexp in httpd.conf - the same as we do with .htaccess ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般来说,.htaccess 仅用于每个目录的设置,而 httpd.conf 用于服务器范围的设置。另外,访问
.htaccess
文件会增加一些小的开销,但这可能不是您关心的问题。是的,您可以
在 httpd.conf 中使用正则表达式
Well, generally speaking .htaccess is just meant for per-directory settings and the httpd.conf for server wide settings. Also accessing the
.htaccess
file adds some small overhead but that's probably not your concern.And yes, you can
use regular expressions in the httpd.conf