Respuestas de foro creadas

Viendo 1 respuesta (de un total de 1)
  • Iniciador del debate rufote

    (@rufote)

    Solved in the english forum entry I’ve created

    The clue is that AllowOverride All has to be set on the involved “Directory” of the Apache server where the wordpress instance is installed and with:

    # use .htaccess files for overriding,
    AccessFileName .htaccess
    # and never show them
    <Files ~ “^\.ht”>
    <IfModule !mod_access_compat.c>
    Require all denied
    </IfModule>
    <IfModule mod_access_compat.c>
    Order allow,deny
    Deny from all
    </IfModule>
    </Files>

    for safety reasons…

Viendo 1 respuesta (de un total de 1)