Extension:SecureLinkFixer

From mediawiki.org
This extension comes with MediaWiki 1.35 and above. Thus you do not have to download it again. However, you still need to follow the other instructions provided.
MediaWiki extensions manual
SecureLinkFixer
Release status: stable
Implementation Parser extension
Description Rewrites URLs to HTTPS if domain always requires HTTPS
Author(s) Kunal Mehta (Legoktmtalk)
Compatibility policy Snapshots releases along with MediaWiki. Master is not backward compatible.
MediaWiki >= 1.42
License GNU General Public License 3.0 or later
Download
README
Help Help:Extension:SecureLinkFixer
Quarterly downloads 26 (Ranked 124th)
Public wikis using 1,070 (Ranked 259th)
Translate the SecureLinkFixer extension if it is available at translatewiki.net
Issues Open tasks · Report a bug

The SecureLinkFixer extension automatically rewrites URLs to HTTPS if the domain always requires HTTPS. It uses the Mozilla HSTS preload list for the list of domains.

The rewrite is done on-the-fly as pages are parsed. No edits to the wiki are made, and the page source retains the original URL.

Installation[edit]

  • Download and move the extracted SecureLinkFixer folder to your extensions/ directory.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/SecureLinkFixer
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'SecureLinkFixer' );
    
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Notes[edit]

The list of domains is updated weekly by a script in the slf Toolforge tool.

Inspiration[edit]