• Dear all,

    Yes, I noticed several posts on this or similar topic. But I still have a problem with my redirection of www to non-www domain. My .htaccess file looks like that:

    # BEGIN WordPress
    
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
    RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
    
    RewriteBase /
    
    RewriteRule ^sitemap_index\.xml$ /index.php?sitemap=1 [L]
    RewriteRule ^([^/]+?)-sitemap([0-9]+)?\.xml$ /index.php?sitemap=$1&sitemap_n=$2 [L]
    
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    
    </IfModule>
    
    # Stop Apache from serving .ht* files
    <Files ~ "^\.ht">
            Order allow,deny
            Deny from all
    </Files>
    
    # END WordPress

    My .htaccess file works and mod_rewrite works as well (when I put some garbage string before ‘RewriteBase /’ fragment I have a 500 error).

    When I try to access http://www.jerror.net I have 404 error. On the other hand http://jerror.net works properly. Could anyone tell me what else could I check?

    Best regards,
    Rob

Viewing 1 replies (of 1 total)
  • Thread Starter rkoziol7

    (@rkoziol7)

    I need to adjust my dns server settings and appropriate CNAME record. It looks in the logs of my DNS provider like that:

    www.jerror.net. 86400 IN CNAME jerror.net.

    Seems that the change of these settings propagates after some time only and will not work immediately. So there is no need to change anything in default WordPress .htaccess file to achieve this goal.

    Best regards,
    Rob

Viewing 1 replies (of 1 total)
  • The topic ‘Redirect www to non-www once again’ is closed to new replies.