Added WebFinger support to my email address using one rewrite rule and one static file.

revision 93fc59352e434dad98943bb87ae781ec582bcd3c

raw

gistfile1.txt

[aaron@parecki.com www]$ cat .htaccess 
RewriteEngine on
RewriteCond %{QUERY_STRING} resource=acct:(.+)
RewriteRule ^\.well-known/webfinger /profile/%1? [L]

[aaron@parecki.com www]$ cat profile/aaron@parecki.com
{
  "subject": "acct:aaron@parecki.com",
  "links": [
    {
      "rel": "http://webfinger.net/rel/avatar",
      "href": "http://aaronparecki.com/images/aaronpk.png"
    },
    {
      "rel": "http://webfinger.net/rel/profile-page",
      "href": "http://aaronparecki.com/"
    },
    {
      "rel": "https://indieauth.com/",
      "href": "http://aaronparecki.com/"
    }
  ]
}

History