From f7ebced6245c2422efea10430cd7ea68ec0c0c56 Mon Sep 17 00:00:00 2001 From: Terence Eden Date: Fri, 15 Sep 2023 07:47:30 +0100 Subject: [PATCH] Fix .htaccess issue with subdomain (#433) * Fix .htaccess instructions * Update readme.txt --- README.md | 2 +- readme.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b82a9ba..02be35a 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ In order for webfinger to work, it must be mapped to the root directory of the U Add the following to the .htaccess file in the root directory: - RedirectMatch "^\/\.well-known/(webfinger|nodeinfo|x-nodeinfo2)(.*)$" "\/blog\/\.well-known$1$2" + RedirectMatch "^\/\.well-known/(webfinger|nodeinfo|x-nodeinfo2)(.*)$" /blog/.well-known/$1$2 Where 'blog' is the path to the subdirectory at which your blog resides. diff --git a/readme.txt b/readme.txt index 8f144c8..653cb48 100644 --- a/readme.txt +++ b/readme.txt @@ -86,7 +86,7 @@ In order for webfinger to work, it must be mapped to the root directory of the U Add the following to the .htaccess file in the root directory: - RedirectMatch "^\/\.well-known/(webfinger|nodeinfo|x-nodeinfo2)(.*)$" "\/blog\/\.well-known$1$2" + RedirectMatch "^\/\.well-known/(webfinger|nodeinfo|x-nodeinfo2)(.*)$" /blog/.well-known/$1$2 Where 'blog' is the path to the subdirectory at which your blog resides.