htaccess rewrite to https except for few pages and files
I use htaccess file to rewrite some url's and also to rewrite http requests to https:
# No Caching for page files
<filesMatch ".(html|htm|js|css|php)$">
<IfModule mod_headers.c>
Header set Cache-Control "no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires 0
</IfModule>
</filesMatch>
# Error pages
ErrorDocument 404 https://%HTTP_HOST/#/404
ErrorDocument 500 https://%HTTP_HOST/#/500
RewriteEngine On
# Rewrite www to non
RewriteCond %HTTP_HOST !=""
RewriteCond %HTTP_HOST ^www.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R,L]
# Rewrite http to https
RewriteCond %HTTPS !=on
RewriteCond %REQUEST_URI !^/tvgids/
RewriteRule ^/?(.*) https://%HTTP_HOST%REQUEST_URI [R,L]
# Ignore conditions for files and folders
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-f
RewriteBase /
# Rewrite /api to api.php
RewriteRule ^api/(.+)$ api/api.php [QSA,L]
# Rewrite /tvgids to guide/index.php
RewriteRule ^tvgids/(.+)$ guide/index.php [QSA,L]
# Rewrite /tv to m3u/index.php
RewriteRule ^tv/(.+)$ m3u/index.php [QSA,L]
# Rewrite /get to get/index.php
RewriteRule ^get/(.+)$ get/index.php
# Rewrite /downloads to downloads.php
# RewriteRule ^download/(.+)$ download/download.php [QSA,L]
But the rewrite condition for /tvgids doesnt work:
RewriteCond %REQUEST_URI !^/tvgids/
Instead if i try to enter /tvgids/abc i get a 404.
I need all pages to rewrite to https, except for a few pages because they are used in apps on android which do not support https.
Can anyone help me with this - now i have to disable ssl for all pages because else nothing works. I dont see what i am doing wrong, is the condition not set right?
I also tried this:
RewriteCond %REQUEST_URI !(tvgids/.*|tv/.*|get/.*|.png|.jpg|.jpeg|.ico)$ [NC]
which also redirects me to https.. but if i test it here:
https://htaccess.madewithlove.be/
It does work -- so am i doing something wrong here?
php apache .htaccess routes
add a comment |
I use htaccess file to rewrite some url's and also to rewrite http requests to https:
# No Caching for page files
<filesMatch ".(html|htm|js|css|php)$">
<IfModule mod_headers.c>
Header set Cache-Control "no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires 0
</IfModule>
</filesMatch>
# Error pages
ErrorDocument 404 https://%HTTP_HOST/#/404
ErrorDocument 500 https://%HTTP_HOST/#/500
RewriteEngine On
# Rewrite www to non
RewriteCond %HTTP_HOST !=""
RewriteCond %HTTP_HOST ^www.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R,L]
# Rewrite http to https
RewriteCond %HTTPS !=on
RewriteCond %REQUEST_URI !^/tvgids/
RewriteRule ^/?(.*) https://%HTTP_HOST%REQUEST_URI [R,L]
# Ignore conditions for files and folders
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-f
RewriteBase /
# Rewrite /api to api.php
RewriteRule ^api/(.+)$ api/api.php [QSA,L]
# Rewrite /tvgids to guide/index.php
RewriteRule ^tvgids/(.+)$ guide/index.php [QSA,L]
# Rewrite /tv to m3u/index.php
RewriteRule ^tv/(.+)$ m3u/index.php [QSA,L]
# Rewrite /get to get/index.php
RewriteRule ^get/(.+)$ get/index.php
# Rewrite /downloads to downloads.php
# RewriteRule ^download/(.+)$ download/download.php [QSA,L]
But the rewrite condition for /tvgids doesnt work:
RewriteCond %REQUEST_URI !^/tvgids/
Instead if i try to enter /tvgids/abc i get a 404.
I need all pages to rewrite to https, except for a few pages because they are used in apps on android which do not support https.
Can anyone help me with this - now i have to disable ssl for all pages because else nothing works. I dont see what i am doing wrong, is the condition not set right?
I also tried this:
RewriteCond %REQUEST_URI !(tvgids/.*|tv/.*|get/.*|.png|.jpg|.jpeg|.ico)$ [NC]
which also redirects me to https.. but if i test it here:
https://htaccess.madewithlove.be/
It does work -- so am i doing something wrong here?
php apache .htaccess routes
add a comment |
I use htaccess file to rewrite some url's and also to rewrite http requests to https:
# No Caching for page files
<filesMatch ".(html|htm|js|css|php)$">
<IfModule mod_headers.c>
Header set Cache-Control "no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires 0
</IfModule>
</filesMatch>
# Error pages
ErrorDocument 404 https://%HTTP_HOST/#/404
ErrorDocument 500 https://%HTTP_HOST/#/500
RewriteEngine On
# Rewrite www to non
RewriteCond %HTTP_HOST !=""
RewriteCond %HTTP_HOST ^www.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R,L]
# Rewrite http to https
RewriteCond %HTTPS !=on
RewriteCond %REQUEST_URI !^/tvgids/
RewriteRule ^/?(.*) https://%HTTP_HOST%REQUEST_URI [R,L]
# Ignore conditions for files and folders
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-f
RewriteBase /
# Rewrite /api to api.php
RewriteRule ^api/(.+)$ api/api.php [QSA,L]
# Rewrite /tvgids to guide/index.php
RewriteRule ^tvgids/(.+)$ guide/index.php [QSA,L]
# Rewrite /tv to m3u/index.php
RewriteRule ^tv/(.+)$ m3u/index.php [QSA,L]
# Rewrite /get to get/index.php
RewriteRule ^get/(.+)$ get/index.php
# Rewrite /downloads to downloads.php
# RewriteRule ^download/(.+)$ download/download.php [QSA,L]
But the rewrite condition for /tvgids doesnt work:
RewriteCond %REQUEST_URI !^/tvgids/
Instead if i try to enter /tvgids/abc i get a 404.
I need all pages to rewrite to https, except for a few pages because they are used in apps on android which do not support https.
Can anyone help me with this - now i have to disable ssl for all pages because else nothing works. I dont see what i am doing wrong, is the condition not set right?
I also tried this:
RewriteCond %REQUEST_URI !(tvgids/.*|tv/.*|get/.*|.png|.jpg|.jpeg|.ico)$ [NC]
which also redirects me to https.. but if i test it here:
https://htaccess.madewithlove.be/
It does work -- so am i doing something wrong here?
php apache .htaccess routes
I use htaccess file to rewrite some url's and also to rewrite http requests to https:
# No Caching for page files
<filesMatch ".(html|htm|js|css|php)$">
<IfModule mod_headers.c>
Header set Cache-Control "no-cache, no-store, must-revalidate"
Header set Pragma "no-cache"
Header set Expires 0
</IfModule>
</filesMatch>
# Error pages
ErrorDocument 404 https://%HTTP_HOST/#/404
ErrorDocument 500 https://%HTTP_HOST/#/500
RewriteEngine On
# Rewrite www to non
RewriteCond %HTTP_HOST !=""
RewriteCond %HTTP_HOST ^www.(.*)$ [NC]
RewriteRule ^(.*)$ https://%1/$1 [R,L]
# Rewrite http to https
RewriteCond %HTTPS !=on
RewriteCond %REQUEST_URI !^/tvgids/
RewriteRule ^/?(.*) https://%HTTP_HOST%REQUEST_URI [R,L]
# Ignore conditions for files and folders
RewriteCond %REQUEST_FILENAME !-d
RewriteCond %REQUEST_FILENAME !-f
RewriteBase /
# Rewrite /api to api.php
RewriteRule ^api/(.+)$ api/api.php [QSA,L]
# Rewrite /tvgids to guide/index.php
RewriteRule ^tvgids/(.+)$ guide/index.php [QSA,L]
# Rewrite /tv to m3u/index.php
RewriteRule ^tv/(.+)$ m3u/index.php [QSA,L]
# Rewrite /get to get/index.php
RewriteRule ^get/(.+)$ get/index.php
# Rewrite /downloads to downloads.php
# RewriteRule ^download/(.+)$ download/download.php [QSA,L]
But the rewrite condition for /tvgids doesnt work:
RewriteCond %REQUEST_URI !^/tvgids/
Instead if i try to enter /tvgids/abc i get a 404.
I need all pages to rewrite to https, except for a few pages because they are used in apps on android which do not support https.
Can anyone help me with this - now i have to disable ssl for all pages because else nothing works. I dont see what i am doing wrong, is the condition not set right?
I also tried this:
RewriteCond %REQUEST_URI !(tvgids/.*|tv/.*|get/.*|.png|.jpg|.jpeg|.ico)$ [NC]
which also redirects me to https.. but if i test it here:
https://htaccess.madewithlove.be/
It does work -- so am i doing something wrong here?
php apache .htaccess routes
php apache .htaccess routes
edited Nov 11 '18 at 23:09
Ernst Reidinga
asked Nov 11 '18 at 22:11
Ernst ReidingaErnst Reidinga
10011
10011
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I actually got it working with this code:
# Rewrite http to https
RewriteCond %HTTPS !=on
RewriteCond %THE_REQUEST !(/tvgids/|/tv/) [NC]
RewriteRule ^/?(.*) https://%HTTP_HOST%REQUEST_URI [R,L]
the RewriteCond %THE_REQUEST !/tvgids/ [NC]
sets a condition where no redirecting to https will be done when tvgids/ is the request. And i didnt need to exclude image file types because i already set a condition to exclude folders and files..
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253754%2fhtaccess-rewrite-to-https-except-for-few-pages-and-files%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I actually got it working with this code:
# Rewrite http to https
RewriteCond %HTTPS !=on
RewriteCond %THE_REQUEST !(/tvgids/|/tv/) [NC]
RewriteRule ^/?(.*) https://%HTTP_HOST%REQUEST_URI [R,L]
the RewriteCond %THE_REQUEST !/tvgids/ [NC]
sets a condition where no redirecting to https will be done when tvgids/ is the request. And i didnt need to exclude image file types because i already set a condition to exclude folders and files..
add a comment |
I actually got it working with this code:
# Rewrite http to https
RewriteCond %HTTPS !=on
RewriteCond %THE_REQUEST !(/tvgids/|/tv/) [NC]
RewriteRule ^/?(.*) https://%HTTP_HOST%REQUEST_URI [R,L]
the RewriteCond %THE_REQUEST !/tvgids/ [NC]
sets a condition where no redirecting to https will be done when tvgids/ is the request. And i didnt need to exclude image file types because i already set a condition to exclude folders and files..
add a comment |
I actually got it working with this code:
# Rewrite http to https
RewriteCond %HTTPS !=on
RewriteCond %THE_REQUEST !(/tvgids/|/tv/) [NC]
RewriteRule ^/?(.*) https://%HTTP_HOST%REQUEST_URI [R,L]
the RewriteCond %THE_REQUEST !/tvgids/ [NC]
sets a condition where no redirecting to https will be done when tvgids/ is the request. And i didnt need to exclude image file types because i already set a condition to exclude folders and files..
I actually got it working with this code:
# Rewrite http to https
RewriteCond %HTTPS !=on
RewriteCond %THE_REQUEST !(/tvgids/|/tv/) [NC]
RewriteRule ^/?(.*) https://%HTTP_HOST%REQUEST_URI [R,L]
the RewriteCond %THE_REQUEST !/tvgids/ [NC]
sets a condition where no redirecting to https will be done when tvgids/ is the request. And i didnt need to exclude image file types because i already set a condition to exclude folders and files..
edited Nov 12 '18 at 3:29
answered Nov 12 '18 at 3:21
Ernst ReidingaErnst Reidinga
10011
10011
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53253754%2fhtaccess-rewrite-to-https-except-for-few-pages-and-files%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown