我必须在我的脚本中使用很多重定向,例如,在用户登录后,我需要将它们重定向到管理区域等.但我发现总是必须在最顶部使用标题功能很不方便.因此,如果我使用元刷新标签进行重定向,根据最佳实践,这是否会令人不悦,还是可以接受?
I have to use redirects a lot in my scripts, for example after a user logs in I need to redirect them to the admin area, etc. But I find it inconvenient to always have to have the header function at the very top. So if I use the meta refresh tags for my redirects, is that something that would be frowned upon according to best practices or is it acceptable?
function redirect($location) {
echo "<meta http-equiv='refresh' content='0; url=$location' />";
}
No. 维基百科明确指出:
元刷新是一种不鼓励使用的方法,它指示网络浏览器在给定时间间隔后自动刷新当前网页或框架.....
Meta refresh is a discouraged method of instructing a web browser to automatically refresh the current web page or frame after a given time interval.....
元刷新标签有一些缺点:
这篇关于在 php 中使用元刷新标签而不是 header() 函数进行重定向是一种好习惯吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!