Changeset 957989 for https-redirection
- Timestamp:
- 07/31/2014 12:02:55 PM (12 years ago)
- Location:
- https-redirection/trunk
- Files:
-
- 2 edited
-
https-redirection.php (modified) (3 diffs)
-
readme.txt (modified) (2 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'] ){ -
https-redirection/trunk/readme.txt
r940834 r957989 5 5 Requires at least: 3.5 6 6 Tested up to: 3.9.1 7 Stable tag: 1. 07 Stable tag: 1.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 21 21 example.com/checkout 22 22 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"23 This 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" 24 24 25 25 = Features =
Note: See TracChangeset
for help on using the changeset viewer.