Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 25

Thread: http to htps

  1. #11
    Senior Member Kitty's Avatar
    Join Date
    Apr 2010
    Location
    Harley Town USA
    Posts
    171

    Default

    Quote Originally Posted by Peter View Post
    I would also be interested in how this works with NOF.

    Me, I found it rather difficult what I have I read about the procedures setting up a secure site. I also found out in the sources I have read (like Thawte), that with static websites (like I produce), where no personal information, passwords etc. are collected, I don't need SSL and https yet and in the near future.
    Hi Peter,

    I just explained this to a client so I have this lovely screenshot I'll show you. Like Franko said below, it's all about security these days, and your Google ranking can be affected if your site is not secure. In Chrome, next to your url, where you usually see the little green lock to indicate a secure page, it will also say "secure" as well as say "Not secure" if you do not have an SSL.

    Click image for larger version. 

Name:	secure.gif 
Views:	424 
Size:	7.0 KB 
ID:	2689
    The biz http://ink2art.com
    Giving it away since 1995... http://fullmoongraphics.com

  2. #12
    Senior Member gprit's Avatar
    Join Date
    Dec 2010
    Location
    France...ex UK
    Posts
    595

    Default

    My understandign about Google and secure sites (SSL) is that "websites displayed using the Google Chrome web browser which contain either a password or credit card form will be marked as 'not secure' ...and be ranked lower.

    I don't see anywhere that this applies to 'showcase' sites, which have no logins and no card input forms.

  3. #13
    Senior Member gprit's Avatar
    Join Date
    Dec 2010
    Location
    France...ex UK
    Posts
    595

    Default

    Interestingly I noticed that the forum website is NOT https.......so logins could be compromised.....

  4. #14

    Default

    I'm looking through this post and noticed that her pictures are not showing in https either
    https://fullmoongraphics.com/kitty/kitty.html
    They still show in http

    Where is the .htaccess file?
    I assume it can be found in the assets view but I don't see it listed.
    Thank you
    Laura

  5. #15
    Senior Member franko's Avatar
    Join Date
    Apr 2010
    Location
    Tasmania Australia
    Posts
    2,642

    Default

    .htaccess is a server file. It is not found in Netobjects. You need to download it from your server and edit it in a text editor. There are heaps of resources on the web telling you how to do this. Not sure, but I do believe you have to be on a unix/apache server; I'm not experienced at all with microsoft servers so don't know if they have .htaccess or an equivalent.

  6. #16

    Default

    Thank you Franko

  7. #17
    Junior Member
    Join Date
    Nov 2017
    Posts
    6

    Default

    Quote Originally Posted by antonsvideo View Post
    you do not change anything in Nof

    all you need to do is upload your site as usual and make sure you modify the .htaccess file so it contains as seen at bottom, and nothing else

    you also need to make sure that you don't have any links to local content pointing to http otherwise you get a warning that only parts are secure.

    example:
    <link rel="shortcut icon" href="https://www.videoproductions.com.au/antons.ico" type="image/x-icon"> (correct)
    <link rel="shortcut icon" href="http://www.videoproductions.com.au/antons.ico" type="image/x-icon"> (wrong)



    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    When you say "and nothing else" is that true? I also use .htaccess to set 404 pages etc. Must I delete those instructions?
    Last edited by WM325; 08-11-2018 at 08:06 PM.

  8. #18
    Senior Member
    Join Date
    Nov 2016
    Location
    Michigan USA
    Posts
    104

    Default

    According to the Apache help file:

    "You should avoid using .htaccess files completely if you have access to httpd main server config file. Using .htaccess files slows down your Apache http server. Any directive that you can include in a .htaccess file is better set in a Directory block, as it will have the same effect with better performance."

    You should go to your hosting co. and get support on how to configure THEIR servers. Only they know what's in their httpd.conf file. And they can tell you if you have access to it.

    You can put anything needed in the config files. The above statement about not putting anything else was just a statement about the https configuration. Of coarse you can put other stuff in the file that is appropriate.

    For MS IIS servers there is the web.config file to use in place of htaccess.

    I know a couple of hosting cos. that use scripts to take anything put into an htaccess file, reload the httpd file with it's contents, then kill the htaccess file. The user didn't even know his htaccess file disappeared. The user sees one but it's not really there being read anymore until it's changed or added to by the user. What was changed is scanned by security software before it's reloaded into httpd.conf. Your hosting co. doesn't trust you any more than they would Russian hackers opening accounts to inject malware into their data center.
    Last edited by rick6811; 08-11-2018 at 09:46 PM.

  9. #19
    Senior Member
    Join Date
    Apr 2010
    Location
    Sydney
    Posts
    2,000

    Default

    Quote Originally Posted by WM325 View Post
    When you say "and nothing else" is that true? I also use .htaccess to set 404 pages etc. Must I delete those instructions?
    you can add anything to the .htaccess, what I meant is that the 3 lines is all that is needed for permanent https redirection

    my .htaccess also has other entries to redirect old page names that no longer exist to their new pages

  10. #20
    Junior Member
    Join Date
    Dec 2011
    Location
    Rye, UK
    Posts
    23

    Default

    I am having problems with https as well (having paid my ISP for a secure certificate !)..
    Where do I find the .htaccess file ? Or do I have to create one ?

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •