将所有WordPress网址设为小写

时间:2011-02-24 23:22:05

标签: wordpress .htaccess redirect

我正在尝试将所有WordPress网址设为小写,但以下代码似乎不起作用...     

RewriteEngine On
RewriteBase /

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

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

</IfModule>

1 个答案:

答案 0 :(得分:0)

您可以将模块mod_speling用于PHP(您需要先加载它)和CheckCaseOnly on|off文件中的.htaccess选项。