web.py の関数 seeother() と redirect() は役に立ちません。私は使用しようとしています
web.header('Location', 'www.google.com')
web.header('status', '301')
が
web.HTTPError('301', {'Location': 'www.google.com'})
、それでもリダイレクトします:
http://127.0.0.1:80/www.google.com
これは私たちが望むものではありません:
http://google.com
正しくリダイレクトするには?
質問する
382 次