Categories

Thursday, November 21, 2024
#919814419350 therichposts@gmail.com
JqueryWordpress TricksWp Tricks

Redirect uppercase to lowercase urls in WordPress

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

therichpost
the authortherichpost
Hello to all. Welcome to therichpost.com. Myself Ajay Malhotra and I am freelance full stack developer. I love coding. I know WordPress, Core php, Angularjs, Angular 19, MedusaJs, Next.js, Bootstrap 5, Nodejs, Laravel, Codeigniter, Shopify, Squarespace, jQuery, Google Map Api, Vuejs, Reactjs, Big commerce etc.

Leave a Reply

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