Tagged Questions
0
votes
0answers
10 views
302 redirection after installing SSL
We just moved our website from one hosting to another. It was working perfectly fine there, we tested the code after moving the code was fine so we started the migration.
Now everything looks fine ...
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 ...
1
vote
3answers
33 views
Redirect select pages to https
I have a very simple question that for some reason I cannot figure out, and hours of searching has not helped either. Using an .htaccess file, how can I redirect just /login.php and /index.php to ...
0
votes
1answer
17 views
Multi-condition rewrite rules
I have a site with areas that require forced SSL mode and then forced to non-SSL for the rest.
I have started with the following rules:
<VirtualHost *:80>
RewriteEngine On
RewriteCond ...
-1
votes
1answer
33 views
htaccess RewriteRule works on http:// but not on https:// [closed]
i have this in my htaccess file :
RewriteRule apply/affiliate/leadcheck /index.php?option=com_loans&task=dedupe&format=raw [NC,P]
it works perfect when i call it via
...
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
2answers
58 views
apache rewrite all URLs to HTTPS except for one
I have a website that I'm directing all non SSL traffic to use the https protocol.
I've used
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
This works great, but I ...
1
vote
1answer
40 views
Force SSL and WWW in .htaccess
I have searched high and low for a way to force SSL and www. but none of the many solutions I have found have worked. Currently I'm trying this:
RewriteCond %{HTTP_HOST} ^domain\.co\.uk$ [OR]
...
0
votes
2answers
266 views
Force Redirect entire domain from http to https [closed]
I am having issues with forcing ssl for my domain.
The following rewrite rules have been applied to public_html/.htaccess which works for the homepage, but not inner pages...
Is there a way that I ...
0
votes
1answer
128 views
Redirect index.php to root does not work with SSL
I'm developing a codeigniter/php web application running on AWS. It is a LAMP stack (ubuntu).
In order to get rid of the index.php in the url I have activated mod_rewrite and used .htaccess file to ...
1
vote
0answers
90 views
Redirect a wordpress sub-page to a different domain using mod_rewrite
I am trying to mask https://mydomain.com/free to www.myotherdomain.com so that when www.myotherdomain.com or myotherdomain.com is entered it loads the page at mydomain.com but shows myotherdomain.com ...
0
votes
0answers
63 views
How can write a mod_rewrite rule to determine if the domain is not the main domain then change https:// to http:// [closed]
I've set up a WordPress multi-site with a wildcard ssl for example.com to access the admin area securely. However I'm also using domain mapping to map other domains to other sites e.g. alldogs.com to ...
1
vote
1answer
105 views
Mod re-write on sub folder
I'm trying to mod re-write to a specific sub folder called /checkout this has an SSL certificate attached for https
So I have this in the root folder of my site -
Options +FollowSymLinks
...
0
votes
2answers
76 views
mod_rewrite SSL with other Rules Active
I'm having issues with my mod_rewrite to SSL while keeping my other rules. I need all pages to be on SSL, but by adding the rule it created a redirect loop.
Here is what I have so far:
RewriteEngine ...
-1
votes
1answer
152 views
Can we change url from https to http from iframe loaded inside base url?
Facebook App page will get a SSL error when coming from secure hypertext protocol(https)) Facebook account to non secure(http) Facebook App Page, which happens due to lack of SSL Certificate in ...
0
votes
1answer
113 views
Newly installed SSL not working on apache2 - Receiving 310 Error - Too many Redirects
Disclaimer - I'm a total newb when it comes to this. Inherited this issue.
I just installed the SSL certificate to our website. Install seems to have gone fine. Whenever I try to access a page via ...
0
votes
2answers
492 views
Enable https using Rewrite Rule for specific URLs
I am new to Apache and I am finding it extremely difficult to understand the rewrite rule syntax.
Here is my setup:
I have a Wordpress MU site at mydomain.com
I have parked domains site1, site2.com ...
1
vote
1answer
510 views
htaccess redirect to ssl only for certain pages and www non secure for the other pages
I need to redirect all requests to the site to www and only certain pages to https without www, since for some reason the ssl certificate bought by our customer doesn't cover www.
After looking around ...
0
votes
1answer
106 views
Force HTTPS and strip WWW without receiving Cert error
I am working on a site that only owns an SSL cert for domain.com. I am trying to remove the www. and redirect to domain.com. This I have working fine.
I also want to force HTTPS on all pages, this ...
1
vote
1answer
813 views
.htaccess url rewrite for ssl https redirection
I've used different codes provided here on other questions' solutions and on the internet. I'm really not savvy with htaccess. Bought and confirmed working SSL Certificate, but I'm new to applying ...
0
votes
1answer
51 views
Apply HTTP to one area of HTTPS website running on Apache
I run a secure website on Apache, but one part requires YouTube videos that aren't showing due to the SSL blocking them.
I therefore need to use HTTP for this part of the site (/videos). If I delete ...
0
votes
2answers
65 views
Add www to URL with and without SSL
I am coding a website that uses SSL for most of the website.
At the moment I'm using a htaccess rule to add www to the URL, see the rule below:
RewriteCond %{HTTP_HOST} ^bettingproperties.com$ [NC]
...
1
vote
1answer
2k views
Codeigniter URL Rewrite SSL HTTPS
Inside the LAN, we are good to go… folks access our intranet using http:// intranet All links and URLs work just fine and dandy (I removed index.php from links using URL Rewriting).
We are required ...
-1
votes
1answer
128 views
htaccess redirect error in domain example.com:443
I've got a problem with a htaccess redirect.
What I like to do:
I want to redirect the link https://www.example.com/folder to https://www.example.com/folder/subfolder.
So normally I would use:
...
1
vote
1answer
475 views
Cakephp how to redirect back to http protocol from https
I understand how to force SSL on certain pages but how do I redirect other pages without https connection?
The reason is that I have external javascript and images running on other pages and they do ...
0
votes
1answer
397 views
How to redirect specific links to https:// everything else to http:// using .htaccess?
I am trying to use htaccess to automatically direct all requests to certain pages to https and everything else to http://
Here is the code I've got the code to force ssl working below
RewriteEngine ...
0
votes
1answer
472 views
mod_rewrite with external redirect and internal rewrite
I'm trying to use mod_rewrite to redirect certain pages to use SSL. For that I have:
RewriteCond %{SERVER_PORT} ^443$
RewriteCond %{REQUEST_URI} !^/login(\.php)?$ [NC]
RewriteCond %{REQUEST_URI} ...
0
votes
1answer
25 views
Could someone please tell me why this apache config results in 404s?
I have changed all personal information, but this exact same config works just fine on *:80. Turning on verbose log levels for both rewrite and normal access logs creates a file full of SSL ...
0
votes
0answers
208 views
mod_rewrite keep referrer by rewriting to https
I redirect all HTTP requests to HTTPS with mod_rewrite.
The HTTP_REFERER header is lost and my analyse tool can not recognize from where my users came from.
#RewriteRule ^/(.*)$ ...
1
vote
1answer
1k views
Redirect only one folder to HTTPS, all others to HTTP
I apologize in advance for asking something that's been answered several times on SO, but I haven't been able to modify any of the answers to work for this case.
I have a /secure/ folder that I need ...
0
votes
1answer
62 views
strange behavior SSL acts when rewriting url
I believe there is something weird when I have rewritten my urls. My website links are forced to use SSL and when I click on any, the browser shows OK for SSL on Chrome (green color on https), safe ...
0
votes
1answer
588 views
How to get Apache to serve Bugzilla CGI from a subpage (NOT subdomain)? [closed]
I'm trying to set up Bugzilla with SSL to be served by Apache from
https://www.foo.com/bugzilla
since I don't want to pay for an extra SSL cert to get https://bugzilla.foo.com.
What is the best ...
0
votes
3answers
765 views
Apache force SSL
I am trying to redirect incoming requests to https://www.domain.com/ and all https://www.domain.com/{all pages} and having little trouble. Methods I tried:
Adding this line: Redirect permanent / ...
0
votes
1answer
2k views
mod_rewrite REQUEST_URI confusion
I want to force ssl access on an entire site, except for the following pages:
www.example.com/loans_and_lines/home_loans.html www.example.com/cards
...
0
votes
1answer
72 views
Apache Redirect when the page is SSL
I have a redirect from http://example.com to http://www.example.com.
now i want this redirect to work when the user is in https protocol. meaning to redirect from https://example.com to ...
2
votes
1answer
700 views
Maintenance page forwarding with htaccess does not work for proxied material
I have scoured the internet and am at a loss as to why my maintenance page redirect and rewrite rules do not work for any proxied material or anything that is coming across through https.
I am using ...
8
votes
4answers
470 views
CakePHP - Selective SSL
How do I force HTTPS for certain parts of a site, e.g. a login page or register page, and use HTTP for the rest of the site?
0
votes
1answer
387 views
how can i rewrite all urls except for a few to https with mod rewrite
I have made a site with codeigniter below is the current htaccess file:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
...
2
votes
1answer
562 views
https://subdomain.example.com redirect to https://example.com:port
Recently purchased a SSL certificate for our main domain and www.domain. Not a wildcard certificate.
I have rewrite rule that redirects all http://subdomain.example.com -> https://example.com:port
...
1
vote
0answers
222 views
Redirect some URLs to https while keeping the rest http
As my site links are relative, i'm finding when i am in a https URL the rest of links become https.
So i want to use mod_rewrite to force redirect some URIs to https while keeping the rest of the ...
0
votes
0answers
154 views
Making URL work on HTTP and HTTPS - mod_rewrite
I'm having the following link:
http://www.somelink.com/home/
home/ is done with mod rewrite ... the actual link is http://www.somelink.com/?page=home.
My question is simple in a way.. How can I ...
1
vote
0answers
454 views
htaccess SSL directory redirect and reverse
I have found similar questions, however no-matter what I try I am unable to get htaccess to do what I need it to. What I'd like is to direct visitors to an SSL connection when visiting one (or more) ...
1
vote
1answer
960 views
.htaccess - turn off SSL for every page except login.php and register.php
Options +FollowSymLinks
RewriteEngine On
# Turn SSL off for everything except login.php (register.php)
RewriteCond %{HTTPS} on
RewriteCond %{SCRIPT_FILENAME} !\/login\.php [NC]
RewriteRule ^(.*)$ ...
0
votes
1answer
87 views
apache rewrite woes [closed]
Having some problems with apache rewrite.
The whole of my site operates over SSL (online store), apart from one page (visit_us.php) with a google maps API on it (since Google charges $$$$$ for HTTPS ...
0
votes
1answer
75 views
Ban https access to the full web site but enable it for just one url
I have an Apache configured to have a full web site working with ssl and without ssl (only http) but I would like to just have ssl for example at https://www.mydomain.com/controller/action/params ...
0
votes
1answer
145 views
Force SSL just for a specific page
Right now the whole site is configured to use SSL in Apache, but I would like to use SSL just for a specific page. Let's say:
http://www.mydomain.com/purchase/buy/28
So everything inside ...
1
vote
1answer
58 views
Why does this cause my site to redirect to secure.secure.*root domain*.com?
Here is the rewrite rule I am using:
RewriteCond %{SERVER_PORT} ^443$
RewriteCond %{HTTP_HOST} !^(www.)secure.\ [NC]
RewriteRule (.*) https://secure.%{HTTP_HOST}%{REQUEST_URI} [R,L]
This rule is ...
3
votes
1answer
812 views
CakePHP and SSL
I just installed a SSL certificate on my website that uses CakePHP and now the site doesn't load anymore files from webroot (images, css files). Any ideas? I think SSL installation affected ...
1
vote
1answer
149 views
force ssl for logged in users
I have a web application that we need to force SSL for, but only when the user is logged in. Unfortunately, the login page is the same url as the web application when a user is logged in.
I had the ...
1
vote
4answers
1k views
How to redirect https://www.domain.com to https://domain.com
I have looked around and I can't seem to find a defenant solution to this. We are having a small problem with a few or our visitors that are typing in our domain as such:
https://www.domain.com - ...
