开发者

Make all WordPress URLs lowercase

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

上一篇:

下一篇:

精彩评论

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

最新问答

问答排行榜