Forum Replies Created

Viewing 15 replies - 61 through 75 (of 79 total)
  • Forum: Fixing WordPress
    In reply to: redirect –>

    Yes,it is. Backend login is working fine?
    Also can you show me what code you have added in htaccess?

    Thanks
    Suman W.

    Forum: Fixing WordPress
    In reply to: redirect –>

    I will recommend www.

    Thanks
    Suman W.

    • This reply was modified 6 years, 5 months ago by Suman.
    • This reply was modified 6 years, 5 months ago by Suman.
    Forum: Fixing WordPress
    In reply to: redirect –>

    That htaccess code(which you removed) will redirect all links to https://www.ala-talkkari.fi

    and In settings Section it shows
    url set to “https:/ala-talkkari.fi”
    So this is creating an issue.
    Be careful while doing this
    Change both urls to “https://www.ala-talkkari.fi”
    and after this you have to modify code.

    Thanks
    Suman W.

    Hello Prabhat,

    Use this plugin.Link
    Disable Directing Browsing.

    Thanks
    Suman W.

    For your theme,if you have background Image in Customizer so use that it will help.
    Please check this screenshot. link

    Hope this helps.

    Thanks
    Suman W.

    • This reply was modified 6 years, 5 months ago by Suman.
    Forum: Fixing WordPress
    In reply to: redirect –>

    Yes you have to revert back to old code.
    This is old 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]
    # Rewrite HTTP to HTTPS
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    
    # Now, rewrite any request to the wrong domain to use www.
    # [NC] is a case-insensitive match
    RewriteCond %{HTTP_HOST} !^www\. [NC]
    RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    </IfModule>
    # END WordPress
    

    Also can you share the screenshot of your settings page only site URL and admi. Url section?

    Forum: Fixing WordPress
    In reply to: redirect –>

    Just revert back the last change. Your login will work fine.

    Russell,if you can deactivate the plug-in that you have updated before crash. Or contact server support so they can restore from last backup.
    When ever you update a plugin/theme/WordPress core make sure to take backup before updating.

    Hope this helps.

    Thanks
    Suman W

    Forum: Fixing WordPress
    In reply to: redirect –>

    Need a small change

    
    # 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]
    # Rewrite HTTP to HTTPS
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    
    # Now, rewrite any request to the wrong domain to use www.
    # [NC] is a case-insensitive match
    RewriteCond %{HTTP_HOST} !^www\. [NC]
    RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    </IfModule>
    # END WordPress

    With this

    
    
    # 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]
    
    # Now, rewrite any request to the wrong domain to use www.
    # [NC] is a case-insensitive match
    RewriteCond %{HTTP_HOST} !^www\. [NC]
    RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    
    # Rewrite HTTP to HTTPS
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    
    </IfModule>
    # END WordPress
    Forum: Fixing WordPress
    In reply to: redirect –>

    Yeah, all the link redirection is working fine.
    But keep all redirection to https://www.ala-talkkari.fi
    So please modify and replace this 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]
    # Rewrite HTTP to HTTPS
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    </IfModule>
    # END WordPress

    with this

    
    # 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]
    # Rewrite HTTP to HTTPS
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    
    # Now, rewrite any request to the wrong domain to use www.
    # [NC] is a case-insensitive match
    RewriteCond %{HTTP_HOST} !^www\. [NC]
    RewriteRule .* https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    </IfModule>
    # END WordPress
    • This reply was modified 6 years, 6 months ago by Suman.
    Forum: Fixing WordPress
    In reply to: redirect –>

    In your htaccess,you have replace this 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>
    
    RewriteCond %{HTTPS} off
    RewriteCond %{REQUEST_URI} !^/\.well\-known/acme\-challenge/
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
    
    # END WordPress

    with this

    
    # 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]
    # Rewrite HTTP to HTTPS
    RewriteCond %{HTTPS} !=on
    RewriteRule ^(.*) https://%{SERVER_NAME}/$1 [R,L]
    </IfModule>
    # END WordPress
    Forum: Fixing WordPress
    In reply to: redirect –>

    Hope this code helps on the link below
    link

    Hope this helps.

    • This reply was modified 6 years, 6 months ago by Suman.

    whys is this difference and i also installed to wordpress 4.9.8.

    Every Theme has different Templates and layout.For more details of theme, you can check on Documentation of Theme so you get an idea what theme supports.
    For eg:
    Twenty Fifteen Theme – link
    Twenty Seventeen Theme – link

    Hello Brenda,

    I have gone through the link you have sent. I hope this link helps you.
    Click here

    This kind of issue can occur when WordPress core or any plugin is updated manually or automatically.For more help, check the above link.

    Hope this Helps

    Agree with Steven.For AWS WordPress hosting,we have to Set AllowOveride All,So that we can overwrite the rules using .htaccess.

Viewing 15 replies - 61 through 75 (of 79 total)