Changeset 613876
- Timestamp:
- 10/17/2012 11:59:08 PM (13 years ago)
- Location:
- multidomain-redirect/tags/1.1
- Files:
-
- 1 added
- 2 copied
-
. (added)
-
main.php (copied) (copied from multidomain-redirect/trunk/main.php) (2 diffs)
-
readme.txt (copied) (copied from multidomain-redirect/trunk/readme.txt) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multidomain-redirect/tags/1.1/main.php
r593236 r613876 5 5 Description: Redirects visitors to the the site's URL as it appears in the WordPress database in case they're not already connecting through that domain. This is handy for secondary domains that point to your WordPress site. 6 6 Author: Joe Anzalone 7 Version: 1. 07 Version: 1.1 8 8 Author URI: http://JoeAnzalone.com 9 9 */ … … 29 29 $new_url = $scheme . $wp_host . $_SERVER['REQUEST_URI']; 30 30 31 if( $wp_host != $this_host){31 if(strtolower($wp_host) != strtolower($this_host)) { 32 32 header("Location: $new_url"); 33 33 die(); -
multidomain-redirect/tags/1.1/readme.txt
r593238 r613876 1 1 === Multidomain Redirect === 2 2 Contributors: Joe Anzalone 3 Donate link: http://JoeAnzalone.com 4 Tags: domain name, redirect, multidomain3 Donate link: http://JoeAnzalone.com/plugins/multidomain-redirect/ 4 Tags: domain name, multidomain, redirect, 302 5 5 Requires at least: 2.0.2 6 Tested up to: 3.4. 16 Tested up to: 3.4.2 7 7 Stable tag: trunk 8 8 License: GPLv2 or later … … 23 23 == Changelog == 24 24 25 = 1.1 = 26 * Fixed infinite redirect loop bug caused by capital letters in site URLs 27 25 28 = 1.0 = 26 29 * First public release 30 31 == Upgrade Notice == 32 33 = 1.1 = 34 * Fixed infinite redirect loop bug caused by capital letters in site URLs
Note: See TracChangeset
for help on using the changeset viewer.