gpt4 book ai didi

php - 强制小写 .htaccess

转载 作者:太空宇宙 更新时间:2023-11-04 14:46:39 25 4
gpt4 key购买 nike

我试过

RewriteEngine On
RewriteMap lc int:tolower
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule (.*) ${lc:$1} [R=301,L]

但是,我收到了 500 内部错误。不确定出了什么问题。

错误:

/home/public_html/.htaccess: RewriteMap not allowed here
[Mon Jul 18 10:33:06 2011] [alert] [client *.*.*.*] /home/public_html/.htaccess: RewriteMap not allowed here

最佳答案

如果你使用 PHP,你可以把它放在你的 index.php 的开头

$url = $_SERVER['REQUEST_URI'];
$pattern = '/([A-Z]+)/';

if(preg_match($pattern, $url)) {
$new_url = strtolower($url);

Header( 'HTTP/1.1 301 Moved Permanently' );
Header( 'Location: ' . $new_url );
exit;
}

// your code here

关于php - 强制小写 .htaccess,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6736931/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com