我在哪里修改Magento的500错误页面?
我正在为客户创建一个网站,我想在前端取消所有 Magento 实例的标记,但我似乎可以找到修改 500 错误模板的位置。
I am making a site live for a client and i want to debadge all instances of Magento on the front end, but I can seem to find where modify the 500 error template.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信您正在寻找的模板是
/errors/default/report.phtml
(以前是/report/skin/default/index.phtml
)。您可能还对这篇文章感兴趣 如果您不想修改标准模板,请指定不同的模板。I believe the template you're looking for is
/errors/default/report.phtml
(previously/report/skin/default/index.phtml
). You might also be interested in this article on specifying a different template if you don't want to modify the standard template.您可以通过 .htaccess 文件指定错误页面。只需在 htaccess 文件中输入以下代码,指定您希望他们看到的页面:
ErrorDocument 500 /error-docs/500.html
显然,您可以更改该数字来更改任何错误页面。
You can specify error pages via your .htaccess file. Just enter this code in your htaccess file specifying what page you want them to see:
ErrorDocument 500 /error-docs/500.html
Obviously you can change the number to change any error page.