开发者

Make all WordPress URLs lowercase

开发者 https://www.devze.com 2023-02-13 02:40 出处:网络
I\'m trying to to get all my WordPress urls to be lowercase, but the following code doesn\'t seem to be working...

I'm trying to to get all my WordPress urls to be lowercase, but the following code doesn't seem to be working...

RewriteEngine On
RewriteBase /

RewriteMap tolower int:tolower
RewriteCond $1 [A-Z]
RewriteRule ^/(.*)$ /${tolower:$1} [R=301]

RewriteRule ^index\.php$ - [L]
开发者_StackOverflowRewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]

</IfModule>


You can use the module mod_speling for PHP (you need to load it first) and the CheckCaseOnly on|off option in your .htaccess file.

0

精彩评论

暂无评论...
验证码 换一张
取 消