Saltar al contenido

🙂  Privacy Enhancement: Block Google Scripts List of free online courses 🥇

List of free online courses

List of free online courses : Google can track a large number of Internet users using its services.

Learn how you can protect your privacy.

🤓 Block Google Scripts List of free online courses ✅

Tracking users’ movements is done using Google Search, Google Maps or Google Plus, but also on sites that use Google Adsense, Analytics and other widgets and scripts it offers.

If you do not want this type of monitoring you can stop it with the following applications.

A great add-on for Mozilla Firefox is  NoScript , which blocks Google’s scripts on the sites we visit (Google Adsense, Google Analytics and Google Plus).

Respectively, for Chrome you will find  Disconnect , which interrupts the communication of Plog with Google servers.

Services like Gmail or Google Search continue to run smoothly, unlike scripts that stop working.

If you know another application, you can suggest it by leaving a comment!

⭐ Important Security Settings List of free online courses 🤑

The .htaccess file is a powerful tool in the field of web security.

It allows more control and modification of several settings to have a more secure website.

💥 List of free online courses  .htaccess – Suggested security settings 🔥

Here is a list of important rules for limiting your site exposure to different types of attacks. You can add them to the .htaccess file of your domain.

1. Deny access to the .htaccess file

This setting will prevent access to the .htaccess file.

# Prevent access to .htaccess

<Files>

Order allow, deny

Deny from all

</Files>

2. Prohibition of access to directories

# Disable unauthorized directory browsing

Options All – Indexes

3. Prohibition of access to files

This code will prevent access to specific files.

# Block access to specific file

<files>

Order allow, deny

Deny from all

</files>

⌚ This code will prevent access to multiple file types List of free online courses ✨

# Block access to multiple file types

<FilesMatch>

Order allow, deny

Deny from all

</FilesMatch>

4. Prohibition of access to IP’s and Domains

Allows access to specific IPs or domains or blocks specific IP addresses and domains

# Restrict access to IP’s & domains (replace x with numbers)

<Limit>

Order allow, deny

allow from all

deny from xx.xxx.xx.xxx

deny from .*domain\.com.*

</Limit>

5. File Extensions Variation

Change the extension of the php file to any you want.

# Disguise php files as html files

AddType application/x-httpd-html .php

6. Protection of Folders and Files with Code

# Protect a single file

<Files>

AuthType Basic

AuthName «Mypassword»

AuthUserFile /home/path/.htpasswd

Require valid-user

</Files>

# Protect multiple files

<FilesMatch>

AuthType Basic

AuthName «Mypassword»

AuthUserFile /home/path/.htpasswd

Require valid-user

</FilesMatch>

7. Reduce bandwidth consumption

😂 This will reduce bandwidth consumption for PHP enabled servers List of free online courses 🔥  

# Limit bandwidth consumption

<ifmodule>

php_value zlib.output_compression 16386

</ifmodule>

8. Disable server signature

#Disable the server signature

ServerSignature Off

9. View Custom Error Pages

# Display custom error pages

ErrorDocument 400 /errors/400.html

ErrorDocument 404 /errors/404.html

ErrorDocument 500 /errors/500.html

[notice] See   which PHP variables   you can change via .htaccess in  Shared Hosting . [/ notice]