Hi, I’m using the newest Kirby.
I’m having trouble installing it on a new sub-domain. After the subdomain kept redirecting from test.example.com to www.test.example.com/test/
I’ve now fixed this issue so it now redirects properly to test.example.com however it now redirects test.example.com/test/ - which brings up a kirby 404. All other default links; blog, projects, contact etc work fine and as expected, it’s just the home page URL that doesn’t function.
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1%{REQUEST_URI} [R=301,QSA,NC,L]
The above sorted out the main redirection issues for me. Any guidance?