Apache 别名 - 重定向循环
我的 VirtualHost 配置如下:
AliasMatch /static /var/www/alpha101/media/static
当我尝试从 www.mydomain.com/static/css/style.css
访问任何内容时,它显示“重定向循环”。
我有办法解决这个问题吗?
I have a VirtualHost configured as below:
AliasMatch /static /var/www/alpha101/media/static
When I tried to access anything from www.mydomain.com/static/css/style.css
, it says "redirect loop".
Is there way way I can solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 AliasMatch 的文档:http://httpd.apache。 org/docs/2.0/mod/mod_alias.html#aliasmatch
AliasMatch 使用正则表达式匹配而不是简单的前缀匹配。
在您的情况下,使用 Alias 会更合适:
Take a look at the documentation for AliasMatch: http://httpd.apache.org/docs/2.0/mod/mod_alias.html#aliasmatch
AliasMatch is uses regex matching instead of simple prefix matching.
In your case, using Alias would be more appropriate: