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
Recent Comments