I have recorded a short clip of my settings https://gyazo.com/bb81dc948393e5be363897634084bc0b
I have .htaccess with
What could be wrong? I think it's a php issue but I can't see what to set
I have .htaccess with
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress