Many have had this issue, but I tried all their solutions without success.
Website hosted on ionos, htaccess is from the starter kit.
Only one field change is the RewriteBase /
Server is on IONOS php 8. Kirby is the latest version 3.9.2.
The panel keeps sending 404.
Pretty sure it is a htaccess issue with ionos. Mode rewrite is on.
Domain name points to a folder which is not a www, but that folder is the root of the domain so it should not have any impact.
I’m lost
Hey there! I guess that means that you uncommented that line in the default .htaccess so that it now looks like
RewriteBase /
That always use to be the correct setting on Ionos for me, at least on older instances.
Hey thx for the reply.
Yeah I uncommented that line.
Also tried to change the rw permissions on the index and kirby folder. But it just seems to not want to process the rewrite rules.
Ionos + php 8
The homepage is ok, all those others paths are not
So in ionos What I did to make it works
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [L]
</IfModule>
Basic htaccess, then url rewrite seemed to work.
Then I added the leftover directives to the htaccess to prevent access to repertories.
No commented lines, only the basic, then build on top of that.
Incremental debug 