zazuko / amos

Archiv Museum ohne Schliesszeiten
1 stars 0 forks source link

Ingress for http://pttarchiv.mfk.ch/ #59

Closed l00mi closed 2 years ago

l00mi commented 2 years ago

Ingress which does simply redirect with the following rule:

Everything from http://pttarchiv.mfk.ch/ -> to https://data.ptt-archiv.ch/search

EXCEPT http://pttarchiv.mfk.ch/detail.aspx?ID=116 -> https://data.ptt-archiv.ch/archive/record/116

ergo http://pttarchiv.mfk.ch/detail.aspx?ID=<> -> https://data.ptt-archiv.ch/archive/record/<>

ludovicm67 commented 2 years ago

Please CNAME pttarchiv.mfk.ch to pttarchiv-mfk-ch.zazuko.net

l00mi commented 2 years ago

@PlekszyGladz see above

PlekszyGladz commented 2 years ago

@l00mi and @ludovicm67 the new DNS entry will be active from Jan 1st.

ludovicm67 commented 2 years ago

Thank you @PlekszyGladz for the CNAME.

Here are the results of some redirections:

Here is the script I used to get the above output:

#!/bin/sh

final_url () {
  res=$(curl -Ls -o /dev/null -w %{url_effective} "$1")
  echo "  - $1 -> ${res}"
}

final_url 'http://pttarchiv.mfk.ch/other.ext'
final_url 'http://pttarchiv.mfk.ch/other.ext?ID=116'
final_url 'http://pttarchiv.mfk.ch/detail.aspx?ID=116'
final_url 'http://pttarchiv.mfk.ch/detail.aspx?id=116'
final_url 'http://pttarchiv.mfk.ch/detail.aspx?bad=1'
final_url 'http://pttarchiv.mfk.ch/detail.aspx?bad=1&ID=116'
final_url 'http://pttarchiv.mfk.ch/toto'
final_url 'http://pttarchiv.mfk.ch/'
final_url 'http://pttarchiv.mfk.ch'

If it looks fine, you can close this issue.