我必须将带有URL
参数的Upper Case
重定向到URL
Lower Case
参数。
由于我无权访问httpd.config file
,请在.htaccess file
帮助我处理一些行。
例如:
www.domain.com/Whatsapp-For-Business-A-Beginners-Guide
到
www.domain.com/whatsapp-for-business-a-beginners-guide
提前致谢。
答案 0 :(得分:0)
如果您有机会使用php:
你可以做到这一点。在.htaccess
(实际RewriteRule
之前):
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule [A-Z] /linkChange.php?l=%{REQUEST_URI} [L]
并在linkChange.php
中:
<?php
$link = $_GET['l'];
$newlink = strtr($link," ABCDEFGHIJKLMNOPQRSTUVWXYZ","-abcdefghijklmnopqrstuvwxyz");
header("Location: http://www.exemple.com". $newlink,TRUE,301); exit;
?>