对网站的不同语言版本使用两个 404 页面未找到页面
是否可以为网站的不同语言版本使用两个 404 page not found 页面?
mydomain.cz 指向 mydomain.com 的根目录,两者使用相同的 404 错误页面。是否可以使用 .htaccess 引导在 .cz 域上遇到错误的用户向 .com 用户显示另一个 404?
目前,对于 .htaccess 中的 404 错误,我们有:
ErrorDocument 404 /projecterror.php
Is it possible to use two 404 page not found pages for different language versions of a site?
mydomain.cz points to the root of mydomain.com with both using the same 404 error page. Is it possible, using .htaccess, to direct users encountering an error on the .cz domain to be shown another 404 to the .com users?
At the moment for 404 errors in .htaccess we have:
ErrorDocument 404 /projecterror.php
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定这是否可以通过 Apache 实现,但我建议定向到 .php 页面,该页面根据从
$_SERVER['SERVER_NAME']解析的信息显示动态内容
I'm not sure if this is possible through Apache, but I would recommend directing to a .php page that displays dynamic content based on information parsed from
$_SERVER['SERVER_NAME']