Error https, www and .hmtl

ugur2949

New Member
YetiShare User
Aug 30, 2013
55
0
0
34
Turkey
www.sistemduragi.com
Hello,

Setting did, but still comes as http ?

Code:
/* which protcol to use, default is http */
define("_CONFIG_SITE_PROTOCOL", "https");
try: https://www.downlium.com

-------------------------------------------------------------

And "www" does not seem to

Code:
/* main configuration file for script */
define("_CONFIG_SITE_HOST_URL", "downlium.com");  /* site url host without the http:// and no trailing forward slash - i.e. www.mydomain.com or links.mydomain.com */
define("_CONFIG_SITE_FULL_URL", "www.downlium.com");  /* full site url without the http:// and no trailing forward slash - i.e. www.mydomain.com/links or the same as the _CONFIG_SITE_HOST_URL */
Code:
/* set these to the main site host if you're using direct web server uploads/downloads to remote servers */
define("_CONFIG_CORE_SITE_HOST_URL", "downlium.com");  /* site url host without the http:// and no trailing forward slash - i.e. www.mydomain.com or links.mydomain.com */
define("_CONFIG_CORE_SITE_FULL_URL", "downlium.com");  /* full site url without the http:// and no trailing forward slash - i.e. www.mydomain.com/links or the same as the _CONFIG_SITE_HOST_URL */

Html extension is not

Code:
Whether to use html or php front-end page extensions
 - html
Code:
RewriteCond $1 !\.html$
" https://downlium.com/65fdf00fd589fb49/_header.php.txt "

www.downlium.com

Thanks
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
https is working



in _config.inc.php

Code:
/* main configuration file for script */
define("_CONFIG_SITE_HOST_URL", "downlium.com");  /* site url host without the http:// and no trailing forward slash - i.e. www.mydomain.com or links.mydomain.com */
Should be
Code:
/* main configuration file for script */
define("_CONFIG_SITE_HOST_URL", "www.downlium.com");  /* site url host without the http:// and no trailing forward slash - i.e. www.mydomain.com or links.mydomain.com */
.html is also working
 

Attachments

ugur2949

New Member
YetiShare User
Aug 30, 2013
55
0
0
34
Turkey
www.sistemduragi.com
A) I did, but I want to force ssl

-----
B) html working but

https://www.downlium.com/a00604f02d515f9e/chrome_frame_helper.exe

I want it that way

https://www.downlium.com/a00604f02d515f9e/chrome_frame_helper.exe.html




-----

Problem Solved ---
I did as you said, has failed

" Error : This web page has a redirect loop "

Code:
/* main configuration file for script */
define("_CONFIG_SITE_HOST_URL", "www.downlium.com");  /* site url host without the http:// and no trailing forward slash - i.e. www.mydomain.com or links.mydomain.com */
and all www added, and did plesk setting



thanks
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
ugur2949 said:
A) I did, but I want to force ssl

-----
B) html working but

https://www.downlium.com/a00604f02d515f9e/chrome_frame_helper.exe

I want it that way

https://www.downlium.com/a00604f02d515f9e/chrome_frame_helper.exe.html
I'm not sure if thats possible, maybe with it is with .htaccess
 

ugur2949

New Member
YetiShare User
Aug 30, 2013
55
0
0
34
Turkey
www.sistemduragi.com
force ssl? m solved

.htaccess in add

Code:
RewriteEngine on
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.mydomain.com/$1 [R,L]
=)

---

one problen .html

Uploading files, but by the end. html does not

https://www.downlium.com/1597c06f5d071bc4/main_logo.jpg

i want to https://www.downlium.com/1597c06f5d071bc4/main_logo.jpg.html (.html)

added RewriteCond $1 !\.html$ :S Help pls

Thanks