0

我一直在对文件夹和文件名中的大写和小写字母进行大量研究。

我发现了许多记录在案的方法来将文件夹和文件名中的大写字符转换为小写字符,但不是我想知道如何做的其他方式。

例子:

假设服务器上的文件夹名为 Folder,文件名为 File。

www.domain.com/folder/file 隐藏到 www.domain.com/Folder/File

我有这个想法的原因是因为 Facebook 会将小写字母转换为大写字母,如果这是您命名用户名的方式,我认为这是一个很棒的过程,因为它为您的链接添加了大量字符。

我在 Apache 1.3.42 上,所以需要一个不适用于较新版本的解决方案。

在下面查看我的 .htaccess 文件,如您所见,我已经对其进行了很多 SEO 工作:

AddType application/x-httpd-php .html

RewriteEngine On
RewriteBase /

#non www to www

RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

#removing trailing slash

RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ $1 [R=301,L]

#html

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^\.]+)$ $1.html [NC,L]

#index redirect

#directory remove index.html

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/ 
RewriteRule ^index\.html$ http://www.arkiq.com/ [R=301,L]

#directory remove index 

RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\ HTTP/ 
RewriteRule ^index http://www.arkiq.com/ [R=301,L]

#sub-directory remove index.html

RewriteCond %{THE_REQUEST} /index\.html
RewriteRule ^(.*)/index\.html$ /$1 [R=301,L]

#sub-directory remove index

RewriteCond %{THE_REQUEST} /index
RewriteRule ^(.*)/index /$1 [R=301,L]

#remove .html

RewriteCond %{THE_REQUEST} \.html
RewriteRule ^(.*)\.html$ /$1 [R=301,L]

如果您知道如何将小写字母重写为大写字母,请告诉我,因为那将是极好的。

4

0 回答 0