emailjeffhere
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Capitals in URL are not converting to lower caseI still have no idea why some of my sites work, and some don’t….but I guess I just blame it on my hosting. So the only things I’ve found that work are the following:
https://stackoverflow.com/questions/4780158/how-to-rewrite-uppercase-letter-url-to-lowercase-without-rewritemap-or-manual-aIf I add the above into my .htaccess, it works well. Or there’s also this plugin I found that pretty much does the same thing. You just install it and activate it and that’s it. It’s found here:
https://www.unfocus.com/2007/08/31/case-insensitive-permalinks-plugin-for-wordpress/
Forum: Fixing WordPress
In reply to: Capitals in URL are not converting to lower caseI see that sort of code posted all over the internet in response to this solution…but I will say most say you need access to the httpd.conf file on the host, which I do not have and they will not edit. And everytime I try to put something like that in my .htaccess file I get a server error. Maybe you can help me with where I need to put it. Here is my .htaccess file:
(This 1st part is in there so that www. just redirects to non-www.)
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{HTTP_HOST} ^www\.(.+)$
RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPressForum: Fixing WordPress
In reply to: Capitals in URL are not converting to lower caseSure, sorry, should have put them here before. A site that WORKS:
https://midcitieschurch.org/About/ (the capital A will convert to lowercase).https://thejefflambert.com/about/ (if you put a capital A there it will just give a page not found).
Forum: Fixing WordPress
In reply to: Capitals in URL are not converting to lower caseThanks for the reply. And yeah, I have read that. But just like I said in my first post, I have some sites that do it, and other sites that do not do it. It is all installed on the same host, Powweb, which I believe is Linux. So in other words, why do I have a site that converts the case, and other one that does not?
I already tried getting with my hosting support, and they said it’s a WordPress thing and get with them.
??