Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter glouglou

    (@glouglou)

    Same 🙁

    Trying some others rules for www force and all the time, show the 404 page.

    • Just make a new try with not entering the id & pass and after clic connect, still show the 404 ?!
    • Another try, If I remove the force www in htaccess, all is allright and show the admin manager after entering the form. But on the url manager, I see that the ‘initial’ www on the login form url is automatically remove when show the admin manager. (ex : initial url https://www.mysite.com/newhiddenadminurl/ —> manager url https://mysite.com/wp-admin/) The www is remove when accessing to the manager AND when I try to manually add the www in the url —> 404 page.

    Sure your mod dont love the www 🙁

    • This reply was modified 3 years, 2 months ago by glouglou.
    Thread Starter glouglou

    (@glouglou)

    Hi and thx for your answer.

    But its a fresh install with no other plugin. I deleted all cookies and cache and still show the 404 page.

    My full .htaccess :

    <Files .htaccess>
    order allow,deny
    deny from all
    </Files>
    
    #####################################################
    
    Options +FollowSymlinks
    Options -MultiViews
    Options -Indexes
    RewriteEngine On
    
    #####################################################
    
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    RewriteCond %{HTTP_HOST} !^www\. [NC]
    RewriteRule (.*) https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

Viewing 2 replies - 1 through 2 (of 2 total)