Forum Replies Created

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

    (@paul-pomeroy)

    Not sure what difference it actually made, but I deleted the initial .com to .org rewrite and the problem went away. I then added those lines back, but after the WordPress stuff and the problem did not come back.

    My .htaccess now looks like:

    # 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
    
    # BEGIN Change .com to .org
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^azwfk\.com$ [OR]
    RewriteCond %{HTTP_HOST} ^www\.azwfk\.com$
    RewriteRule ^/?$ "http\:\/\/www\.azwfk\.org" [R=301,L]
    </IfModule>
    # END Change .com to .org

    Thread Starter Paul Pomeroy

    (@paul-pomeroy)

    Maybe this would be better off in the WP Advanced Forum?

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