Changeset 957989 for https-redirection/trunk/https-redirection.php
- Timestamp:
- 07/31/2014 12:02:55 PM (12 years ago)
- File:
-
- 1 edited
-
https-redirection/trunk/https-redirection.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
https-redirection/trunk/https-redirection.php
r940834 r957989 5 5 Description: The plugin HTTPS Redirection allows an automatic redirection to the "HTTPS" version/URL of the site. 6 6 Author: Tips and Tricks HQ 7 Version: 1. 07 Version: 1.1 8 8 Author URI: http://www.tipsandtricks-hq.com/ 9 9 License: GPLv2 or later … … 77 77 $httpsrdrctn_option_defaults = array( 78 78 'https' => 0, 79 'https_domain' => 1,79 'https_domain' => 0, 80 80 'https_pages_array' => array(), 81 81 'plugin_option_version' => $httpsrdrctn_plugin_info["Version"] … … 222 222 if ( ! file_exists( $home_path . '.htaccess' ) ) { 223 223 if( $httpsrdrctn_options['https'] == '1' ){ 224 $rewrite_https_content = '<IfModule mod_rewrite.c> \n';224 $rewrite_https_content = '<IfModule mod_rewrite.c>' . "\n"; 225 225 $rewrite_https_content .= 'RewriteEngine On' . "\n"; 226 226 if( '1' == $httpsrdrctn_options['https_domain'] ){
Note: See TracChangeset
for help on using the changeset viewer.