好吧,为了启动我的项目,我将chmod -R 777交给我的项目文件夹,当我想自己登录时返回302警告
登录功能
import itertools
with open(filename, 'r') as f:
lines_gen = itertools.islice(f, 1, num_lines) # start from 1, read num_lines
l = [int(line) for line in lines_gen]
302错误登录:
我该如何解决?
答案 0 :(得分:0)
302
不是错误。它只是重定向的状态代码。如果你的代码中有Location
标题,那么php会自动添加它。
所以没有忧虑