Plugin Directory

Changeset 613876


Ignore:
Timestamp:
10/17/2012 11:59:08 PM (13 years ago)
Author:
Joe Anzalone
Message:

Tagging version 1.1

Location:
multidomain-redirect/tags/1.1
Files:
1 added
2 copied

Legend:

Unmodified
Added
Removed
  • multidomain-redirect/tags/1.1/main.php

    r593236 r613876  
    55Description: 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.
    66Author: Joe Anzalone
    7 Version: 1.0
     7Version: 1.1
    88Author URI: http://JoeAnzalone.com
    99*/
     
    2929        $new_url = $scheme . $wp_host . $_SERVER['REQUEST_URI'];
    3030       
    31         if($wp_host != $this_host){
     31        if(strtolower($wp_host) != strtolower($this_host)) {
    3232            header("Location: $new_url");
    3333            die();
  • multidomain-redirect/tags/1.1/readme.txt

    r593238 r613876  
    11=== Multidomain Redirect ===
    22Contributors: Joe Anzalone
    3 Donate link: http://JoeAnzalone.com
    4 Tags: domain name, redirect, multidomain
     3Donate link: http://JoeAnzalone.com/plugins/multidomain-redirect/
     4Tags: domain name, multidomain, redirect, 302
    55Requires at least: 2.0.2
    6 Tested up to: 3.4.1
     6Tested up to: 3.4.2
    77Stable tag: trunk
    88License: GPLv2 or later
     
    2323== Changelog ==
    2424
     25= 1.1 =
     26* Fixed infinite redirect loop bug caused by capital letters in site URLs
     27
    2528= 1.0 =
    2629* 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.