Suman
Forum Replies Created
-
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 –>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.Forum: Accessibility
In reply to: Link of all the files under uploads folderForum: Fixing WordPress
In reply to: Can’t add background image with containerForum: 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.
Forum: Fixing WordPress
In reply to: Plugin crashed WordPressRussell,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 WForum: 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 –>Forum: Fixing WordPress
In reply to: unable to see page template in page atributeForum: Fixing WordPress
In reply to: My Blog and Dashboard has disappearedHello Brenda,
I have gone through the link you have sent. I hope this link helps you.
Click hereThis 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
Forum: Fixing WordPress
In reply to: I don’t understand the behaviour on Apache server redirectionAgree with Steven.For AWS WordPress hosting,we have to Set AllowOveride All,So that we can overwrite the rules using .htaccess.