Plugin Directory

Changeset 957989 for https-redirection


Ignore:
Timestamp:
07/31/2014 12:02:55 PM (12 years ago)
Author:
mra13
Message:

committing v1.1

Location:
https-redirection/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • https-redirection/trunk/https-redirection.php

    r940834 r957989  
    55Description: The plugin HTTPS Redirection allows an automatic redirection to the "HTTPS" version/URL of the site.
    66Author: Tips and Tricks HQ
    7 Version: 1.0
     7Version: 1.1
    88Author URI: http://www.tipsandtricks-hq.com/
    99License: GPLv2 or later
     
    7777        $httpsrdrctn_option_defaults = array(
    7878            'https'                 => 0,
    79             'https_domain'  => 1,
     79            'https_domain'  => 0,
    8080            'https_pages_array' => array(),
    8181            'plugin_option_version' => $httpsrdrctn_plugin_info["Version"]
     
    222222        if ( ! file_exists( $home_path . '.htaccess' ) ) {
    223223            if( $httpsrdrctn_options['https'] == '1' ){
    224                 $rewrite_https_content = '<IfModule mod_rewrite.c>\n';
     224                $rewrite_https_content = '<IfModule mod_rewrite.c>' . "\n";
    225225                $rewrite_https_content .= 'RewriteEngine On' . "\n";
    226226                if( '1' == $httpsrdrctn_options['https_domain'] ){
  • https-redirection/trunk/readme.txt

    r940834 r957989  
    55Requires at least: 3.5
    66Tested up to: 3.9.1
    7 Stable tag: 1.0
     7Stable tag: 1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2121example.com/checkout
    2222
    23 This plugin will enforce that so if anyone uses the URL "http://www.example.com/checkout" in the browser's address bar, It will automatically redirect to "https://www.example.com/checkout"
     23This plugin will enforce that so if anyone uses the URL "http://www.tipsandtricks-hq.com/checkout" in the browser's address bar, It will automatically redirect to "https://www.tipsandtricks-hq.com/checkout"
    2424
    2525= Features =
Note: See TracChangeset for help on using the changeset viewer.