Post by techplusweb » Thu Sep 03, 2020 4:20 pm

Redirect problem on .htaccess

The correct https://www. redirects are only made on home page, not done correctly on categories pages and products pages.

example:

correct
domain.co.uk - redirects to https://www.domain.co.uk
http://domain.co.uk - redirects to https://www.domain.co.uk
http://www.domain.co.uk - redirects to https://www.domain.co.uk

incorrect: !!!!!!
domain.co.uk/category - doesn't redirects to https://www.domain.co.uk/category
www.domain.co.uk/category - doesn't redirects to https://www.domain.co.uk/category
http://www.domain.co.uk/category - doesn't redirects to https://www.domain.co.uk/category
http://domain.co.uk/category - doesn't redirects to https://www.domain.co.uk/category



Below is the .htaccess file

Code: Select all

# 1.To use URL Alias you need to be running apache with mod_rewrite enabled.



# 2. In your opencart directory rename htaccess.txt to .htaccess.



# For any support issues please visit: http://www.opencart.com



Options +FollowSymlinks



# Prevent Directoy listing

Options -Indexes



# Prevent Direct Access to files

<FilesMatch "(?i)((\.tpl|\.ini|\.log|(?<!robots)\.txt))">

 Require all denied

## For apache 2.2 and older, replace "Require all denied" with these two lines :

# Order deny,allow

# Deny from all

</FilesMatch>



# SEO URL Settings

RewriteEngine On

# If your opencart installation does not run on the main web folder make sure you folder it does run in ie. / becomes /shop/



RewriteBase /

RewriteRule ^sitemap.xml$ index.php?route=extension/feed/google_sitemap [L]

RewriteRule ^googlebase.xml$ index.php?route=extension/feed/google_base [L]

RewriteRule ^system/download/(.*) index.php?route=error/not_found [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

RewriteCond %{REQUEST_URI} !.*\.(ico|gif|jpg|jpeg|png|js|css)

RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]

RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]



### Additional Settings that may need to be enabled for some servers

### Uncomment the commands by removing the # sign in front of it.

### If you get an "Internal Server Error 500" after enabling any of the following settings, restore the # as this means your host doesn't allow that.



# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:

# php_flag register_globals off



# 2. If your cart has magic quotes enabled, This may work to disable it:

# php_flag magic_quotes_gpc Off



# 3. Set max upload file size. Most hosts will limit this and not allow it to be overridden but you can try

# php_value upload_max_filesize 999M



# 4. set max post size. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value post_max_size 999M



# 5. set max time script can take. uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value max_execution_time 200



# 6. set max time for input to be recieved. Uncomment this line if you have a lot of product options or are getting errors where forms are not saving all fields

# php_value max_input_time 200



# 7. disable open_basedir limitations

# php_admin_value open_basedir none

New member

Posts

Joined
Wed Dec 17, 2014 6:26 pm

Post by letxobnav » Thu Sep 03, 2020 4:38 pm

put this:

Code: Select all

RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
right after:

Code: Select all

RewriteBase /

Crystal Light Centrum Taiwan
Extensions: MailQueue | SUKHR | VBoces

“Data security is paramount at [...], and we are committed to protecting the privacy of anyone who is associated with our [...]. We’ve made a lot of improvements and will continue to make them.”
When you know your life savings are gone.


User avatar
Expert Member

Posts

Joined
Fri Aug 18, 2017 4:35 pm
Location - Taiwan

Post by techplusweb » Thu Sep 03, 2020 8:39 pm

letxobnav wrote:
Thu Sep 03, 2020 4:38 pm
put this:

Code: Select all

RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R=301,L]
RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
right after:

Code: Select all

RewriteBase /
working perfect!
thank you very much!

New member

Posts

Joined
Wed Dec 17, 2014 6:26 pm

Post by paulfeakins » Fri Sep 04, 2020 7:38 pm

techplusweb wrote:
Thu Sep 03, 2020 8:39 pm
working perfect!
Please add [SOLVED] to the front of the post title.

UK OpenCart Hosting | OpenCart Audits | OpenCart Support - please email info@antropy.co.uk


User avatar
Legendary Member
Online

Posts

Joined
Mon Aug 22, 2011 11:01 pm
Location - London Gatwick, United Kingdom

Post by vishnuvu » Mon Sep 14, 2020 1:45 pm


Newbie

Posts

Joined
Sun Sep 13, 2020 2:14 pm
Who is online

Users browsing this forum: Majestic-12 [Bot] and 41 guests