Changed redirect from temporary (302) to permanent (301)

This commit is contained in:
sqozz 2016-02-10 14:06:07 +01:00
parent e804ffa917
commit 383643bdca
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ def short(shortLink=""):
c = conn.cursor()
result = c.execute('SELECT * FROM links WHERE shortLink=?', (shortLink, )).fetchone()
if result:
return redirect(result[1], code=302) # Redirect to long URL saved in the database
return redirect(result[1], code=301) # Redirect to long URL saved in the database
else:
message = ""
if len(shortLink) > 0: