Make Redirects case in-sensitive?
-
this would be for anyone NOT using wildcards
it would be easy enough to make the regex case in-sensitive as wellBy changing line 244:wp-simple-301-redirects.php, elseif condition
from:
(urldecode($userrequest) == rtrim($storedrequest,'/'))to:
(strcasecmp(urldecode($userrequest), rtrim($storedrequest,'/')) == 0)This allows the 301s to be compared without the case condition. Thought some users may find this useful.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Make Redirects case in-sensitive?’ is closed to new replies.