2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[Python] CGIHTTPServer で リダイレクトする

Last updated at Posted at 2016-09-30
動作確認
Python 2.7
Mac OS

やりかた

  1. metaタグでリダイレクトするようなhtmlを吐く.pyを書く
  2. CGIHTTPServerを立ち上げる
  3. 作った.pyにアクセスする

$ mkdir cgi-bin
$ vim cgi-bin/redirect.py

redirect.py
#! /usr/bin/python
print "Content-type: text/html;\n\n"
print "<meta http-equiv=\"refresh\" content=\"0;URL=http://qiita.com/\">"

$ chmod +x cgi-bin/redirect.py
$ python -m CGIHTTPServer 8000

ブラウザでlocalhost:8000/cgi-bin/redirect.pyにアクセス

経緯

通常Locationを使うとリダイレクトできるんですが、
Python 2.7.12 documentationによると、HTTPレスポンスに書く形でのリダイレクトはできないとのことで、諦めて別のWEBサーバを使いがちです。

注釈 CGIHTTPRequestHandler クラスで実行される CGI スクリプトは HTTP コード 200 (スクリプトの出力が後に続く) を実行に先立って出力される (これがステータスコードになります) ため、リダイレクト(コード302) を行なうことができません。

しかし、今回のような方法で実現することもできます。
できるかどうかと使うかどうかは別の話ですね。

補足

Python 2.7の環境で確認しています。
ただ、細かいバージョンで違いがあるような技術ではないです。
3系だと、これですが、リダイレクトということで考えることは同じです。

また、最小手順を示すために色々削って確認しています。
各々でちゃんと書いてください。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?