我正在尝试将所有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>
答案 0 :(得分:0)
您可以将模块mod_speling
用于PHP(您需要先加载它)和CheckCaseOnly on|off
文件中的.htaccess
选项。