Home Jquery Redirect uppercase to lowercase urls in WordPress

Redirect uppercase to lowercase urls in WordPress

by therichpost
0 comments
How to add custom meta title and meta description in Wordpress?

Hello to all, welcome to therichpost.com. In this post, I will tell you how to Redirect uppercase to lowercase urls in WordPress?

Post Working:

In this post, I am doing, wordpress urls redirect uppercase to lowercase(wordpress case sensitive urls) with the help of jquery.

Here is the working code and you can add this into your wordpress theme’s header.php or footer.php file:

<script>
function isLower(character) {
  return (character === character.toLowerCase()) && (character !== character.toUpperCase());
}

    $(document).ready(function(){
        var url = window.location.href;
        if(isLower(window.location.href))
        {
            //true condition
        }
        else
        {
            url = url.toLowerCase();
            window.location.href = url;
        }
       

    })
</script>

 

If you have any query related to this post then please do comment below.

Jassa

You may also like

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.