How to redirect lowercase to uppercase
.htaccess files are extremely useful in many cases for users who either do not have root permissions or for users who simply aren't comfortable in making changes in their web server's configuration file. Trying to debug .htaccess not working isn't always the easiest thing to do, however, hopefully by checking the discuss below mentioned about htaccess, redirects, wordpress, 301-redirect, .htaccess common problems as well as the troubleshooting tips, you'll have a better grasp on what you may have to modify to get your .htaccess file running smoothly.Problem :I have a WordPress blog and I made subfolder like this
https://example.com/Tourism
but when I open this URL with lowercase "t" it shows me 404 not found error:
https://example.com/tourism
this subfolder has a lot of posts and when I open "tourism" (with lowercase "t") it shows me 404 not found.
How can I redirect all "tourism" word to "Tourism" with .htaccess?
In .htaccess, to redirect all URLs that start /tourism to /Tourism then you can do something like the following at the top of the .htaccess file in the root, before the WordPress front-controller:
# Redirect "/tourism" to "/Tourism"
RewriteRule ^t(ourism.*) /T$1 [R=302,L]
Change the 302 (temporary) redirect to 301 when you are sure it's working OK.
For a WordPress specific answer (ie. to redirect late and not interfere with "normal" traffic) then you should ask this on our WordPress sister site at https://wordpress.stackexchange.com/
Comments
Post a Comment