Tagged Questions
0
votes
1answer
14 views
Custom 404 error redirect not working for https requests in htaccess file
I have a simple 404 redirect in a .htaccess file which works fine for Http requests:-
ErrorDocument 404 /apps/handle_error.php
The handle_error.php returns an appropriate PNG image depending on the ...
0
votes
0answers
13 views
How to transfer every url of my site to https excluding one subdomain?
So I have already transferred all of my site's subdomains and domain name
to (https) automatically using .Htaccess.
The code I've used to do that is as follows:
RewriteEngine On
RewriteCond %{HTTPS} ...
0
votes
1answer
12 views
SSL redirection based on folder and domain
This seems like such an easy thing, yet I am having such trouble with it. I have a development server and a live server, I push, via git, from the dev server to live server once changes are tested ...
0
votes
1answer
13 views
https redirected to https for one page of site in .htaccess
I have a link to a secure quote form on my site, which I changed to a different secure URL. I am showing 404's for the old URL. I have tried numerous ways to redirect using .htaccess to no avail. Can ...
0
votes
0answers
25 views
Images do not load on https, site breaks down on certain links
The website I am having issues with is www.trommelo.org, it uses DRUPAL as a CMS. I am having problems when I access the site in CHROME @ https://trommelo.org.
When on http (on certain links) I get ...
0
votes
0answers
53 views
Problems with redirecting https to http with exceptions
We got a Magento website and the checkout, login etc. pages work fine they redirect automatically to https. But we have an issue with all other url’s because they are accessible thru http and https ...
-1
votes
0answers
20 views
HTAccess Redirect HTTP to HTTPS only certain domain
I've two domains linking into one host. I only have an SSL certificate installed on one of them. My current HTAccess is as follows:
RewriteCond %{HTTP_HOST} ^domain\.co\.uk$ [OR]
RewriteCond ...
0
votes
1answer
21 views
Redirect https to https in .htaccess file
I created a quote form on an https server that did not work, so I need to redirect that url to the new https server that works...
redirect permanant https://www.my-url.com/quotes/ to ...
0
votes
2answers
28 views
.htaccess rule for redirecting everything to https:// that thing
What is the proper .htacess rule to redirect every request by a user to any page on my server to https://that page
For example, mydomain.com or http://mydomain.com would go to https://mydomain.com
...
0
votes
1answer
118 views
Redirecting https to http in .htacces with some exceptions
I'm using a magento website and all pages on the site are accessible through http and https and that might be causing duplicate content issues with google. I need the proper coding for redirecting in ...
0
votes
2answers
41 views
TYPO3 Force HTTPS in FE
I have two domains pointing to the same website, domain A and domain B. I want:
Domain A to be accessible via HTTP (works fine out of the box)
Domain B to redirect all requests to HTTPS. Basically ...
0
votes
1answer
32 views
htaccess - Fetch static content from different path if page is HTTPS
As per the guidelines to speed up site, I have off-loaded all my static content (JS|CSS|IMAGES) to a subdomain static.example.com.
The site is working fine but the problem arises when I load the ...
1
vote
1answer
43 views
Redirect single page http to https
I'm trying to redirect a single page from http to https using .htaccess, but I keep getting a redirect loop error.
Code:
Redirect /secureform.html https://www.example.com/secureform.html
However, ...
0
votes
1answer
39 views
rewrites not working with ssl
I can't figure this one out, it seems that Prestashop url rewrites stop working when using ssl (https) in the url:s, the base url works fine like https://www.domain.se but for instance images are not ...
0
votes
1answer
36 views
Redirecting from https to http with the exception of some URI's
So the problem I am currently having is that our entire website is indexed using https. we want to redirect to http using .htaccess. the problem is that we need a couple of URIs to still use https and ...
0
votes
2answers
104 views
Magento Redirect https to http home page
Google has indexed the home page of my website with https. But I need to redirect https to http only this page. I'm using Magento and today I have a rule that removes the htaccess www of my domain. ...
1
vote
1answer
95 views
Best pratice for SSL in CakePHP
I'd like to implement HTTPS for all pages.
I use CakePHP 2.3 with the "Auth" component.
Actually the only one way I found is to add a "beforeFilter-condition".
But this is very dirty because I have ...
-1
votes
1answer
24 views
Choosing a canonical version [closed]
I'm running a website that uses an SSH certificate. This leaves for potential CNames:
https: //example.com
https: //www.example.com
http: //example.com
http: //www.example.com
From an SEO perspective ...
0
votes
1answer
44 views
Canonical https and www [closed]
Apologies if this seems pretty simple to some folk.
In the past I have set up 301 redirects with that snippet of code that is all over the internet:
Options +FollowSymlinks
RewriteEngine on
...
-1
votes
1answer
109 views
Force redirect http to https on Elastic Beanstalk [closed]
In order to redirect http to https on a AWS Elastic Beanstalk php application i'm using rewrite rules on .htaccess file.
My problem is that my rules work fine for urls pointing to files but not for ...
0
votes
2answers
77 views
Code to redirect HTTP to HTTPS [closed]
I bought SSL certificates from GoDaddy but the domains aren't forwarding properly to https. The pages are still reachable under http and when I try https I receive a browser error "The page isn't ...
1
vote
2answers
37 views
Issue with redirect to HTTPS always [closed]
I'm trying redirect my domain to https always with .htaccess.
For http://www.my-domain.com/ and http://my-domain.com/ it redirects fine.
But for https://my-domain.com/ I wan to redirect it to ...
2
votes
2answers
41 views
Redirecting from HTTP to HTTPS duplicates the www [closed]
I'm trying to redirect the user to https://www.example.com, when the user tries http://example.com, www.example.com, https://example.com, http://www.example.com etc.
For that I use this code in my ...
-1
votes
1answer
44 views
RewriteCond htaccess [closed]
I use the following in my .htaccess for forcing some URLs to use HTTPS:
RewriteCond %{HTTPS} off
RewriteCond $1 ^(afrekenen|bestelstatus|download) [NC]
RewriteRule (.*) ...
0
votes
1answer
36 views
htaccess: turning https on and off for specific urls?
I am trying to configure some conditional redirects, what I want is this:
http://www.example.com/login
http://www.example.com/login/*
http://www.example.com/login/account
...
0
votes
1answer
65 views
.htaccess force whole site https except some path
I've managed to switch all my website in https through .htaccess with these rules:
RewriteCond %{HTTPS} off [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301,QSA]
RewriteCond ...
0
votes
0answers
28 views
htaccess: who to redirect http to https im my case?
I have to modify two .htaccess files. The first is in var/wwwand the second in var/www/mysite. In var/www is the index.php for User-Login. After successfully login the user will be in var/www/mysite
...
0
votes
0answers
25 views
Htaccess weird redirect issue
I want to change the protocol of three specific urls from "http" to "https". But, my redirections aren't working. Is there something that I'm fundamentally missing?
The process: When I'm running the ...
0
votes
0answers
69 views
Force browser to clear cache to get rid of https:// stored url
Is it possible to force a user's browser to clear its cache? I'm not 100% sure that this will solve my problem, so let me explain what's going on:
We recently transferred a site to a new server with ...
1
vote
1answer
44 views
Forward one special http URL to https URL with port via htaccess
For our website we need a redirection of the following Login URL
http://lit.example.com/index.php?action=initLogon
to
https://lit.example.com:60558/index.php?action=initLogon
I didn't find any ...
1
vote
1answer
200 views
Google Chrome and apache .htaccess redirect loop error
I have a problem that only affects google chrome. I have two subdirectories secure.fixnode.ca and storage.fixnode.ca, both of these sudirectories need to use https protocol.
The error I get in Google ...
0
votes
1answer
111 views
Redirect specific page to HTTPS with HTACCESS
i have this URL http://www.mysite.com/checkout/payment, well, i created a file htaccess to redirecting this page, when the URL is different of 'checkout/payment', the URL turns into a normal http.
...
3
votes
4answers
115 views
Force https through htaccess for logged in users
I am trying to force https for all logged in users. Most of my app requires a user to be logged in but I still have many pages that should only be http and others that should be served both through ...
0
votes
0answers
33 views
.htaccess & including https://www to all addresses (sub-domains included)
Tried various solutions but either they have not worked or worked fully. The below also doesn't work as needed. Providing for those who may know how to help.
Want all addresses subdomain or regular ...
0
votes
0answers
51 views
Forcing HTTPS on certain files/folders while forcing WWW URL re-writing
I have the following rules in my .htaccess to force www for a domain:
#-------------------#
#Force www in all links
#-------------------#
RewriteCond %{HTTP_HOST} ^mysite.com [NC]
RewriteRule ^(.*)$ ...
-1
votes
2answers
57 views
Forcing HTTPS is breaking my page design
https is breaking my website's design. Please have a look at www.pawpost.com.au/index.php
I am using opencart if that helps at all.
I have SSL 'on' in admin/system
Config file:
// HTTP
...
0
votes
0answers
51 views
htaccess redirect https to http
Currently I have the following in .htaccess:
RewriteCond %{HTTP_HOST} !^$
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteCond %{HTTPS}s ^on(s)|
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} ...
0
votes
1answer
77 views
Hidden redirect http to https with .htaccess
I need to redirect a http page to a https and make it hidden, like:
http://www.example1.com -> https://www.example2.com
So example1 is always visible in the URL bar, and example2 is hidden.
Will ...
0
votes
1answer
79 views
.htaccess: force www on all pages, force https on one page, force http on all other pages
I have this site, example.com. What I want to do is force www on all pages, force https on one page, force http on all other pages.
I am using the following .htaccess code to redirect all http ...
0
votes
0answers
52 views
Forcing SSL [https] on one page and non-SSL [http] on the rest?
I'm using this code to force SSL on a single page:
#Force SSL on a specific directory
RewriteCond %{ENV:HTTPS} !on [NC]
RewriteCond %{REQUEST_URI} stay-informed
RewriteRule ^(.*)$ ...
0
votes
0answers
36 views
http to https redirection in htacess
AddType application/x-httpd-php .php .xml
RewriteEngine On
redirect all www's to non www domain.
RewriteCond %{HTTP_HOST} ^www.domain.com$ [NC]
RewriteRule ^(.*)$ https://domain.com/$1 [R=301,L]
...
0
votes
1answer
43 views
Applying SSL to one page ONLY using htacess file
I have a webpage I need secured. However, I can only apply SSL to one, specific page. Since it is irrelevant to the discussion, I will not explain why this is the case.
I keep seeing the code below ...
0
votes
2answers
136 views
Wordpress https ssl content blocked errors
I have spent many days on google with this now, my wordpress problem is this.
I would like to turn on https for a couple of pages on the site for a checkout page and a my-account page.
What i have ...
0
votes
1answer
140 views
https and http combined .htaccess (different issue)
OK. Hopefully someone can help me with a suggestion-
I have a WordPress multisite using subfolders
I am using WooCommerce
I have a std Ubuntu 12.04/LAMP server with a GoDaddy Certificate installed
...
0
votes
0answers
34 views
http to https rewrtie 302
I'm currently having an issue with my wordpress site and the htaccess file.
I can confirm that the Wordpress version is 3.5 and that this was installed on my webserver correctly.
As I wish for the ...
0
votes
1answer
142 views
.htaccess 301 Redirect that Works for http and https cases, .com and localhost
I need to do a 301 redirect on a single page. If I just wanted it to work from www.example.com, I would have:
redirect 301 /urisegment1/urisegment2/urisegment3 ...
0
votes
1answer
154 views
Rewrite rule same for http and https apache .htaccess
we bought some software from a third party provider and proceeded to install an ssl certificate... When we go to the http version of the site, everything works fine, but when we go to https, the ...
0
votes
1answer
57 views
.htaccess to redirect certain areas to https
What I'm trying to do is serve the folder /soap OR pages that have /?p=uploads in title over http, the rest of the site over https.
RewriteEngine on
RewriteBase /
RewriteCond %{QUERY_STRING} ...
-1
votes
1answer
136 views
htaccess rewrite for internal links based on current URL or referrer [closed]
I am a real beginner at htaccess, apache and regex, so if i am asking stupid question please forgive me.
Here is my case:
I have a forum, that allows access optionaly for users on
...
1
vote
1answer
671 views
htaccess redirect to https://www
I have the following htaccess code:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond !{HTTPS} off
RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
RewriteCond ...






