web-dev-qa-db-ja.com

URLを小文字のURLにリダイレクトする方法は?

私は使用しています:

<IfModule mod_rewrite.c>
    Options +FollowSymLinks
    RewriteEngine On   
    RewriteCond %{HTTP_Host} ^example\.com [NC]
    RewriteRule (.*) http://example.com/$1 [L,R=301]
</IfModule>

ただし、すべての大文字を小文字に書き換えたい、たとえば:

  • OLD:/myfolder-sample-URL.html
  • 新規:/myfolder-sample-url.html
7
pelajar

Mod_rewriteと.htaccessを使用してこのようなリダイレクトを実装するには、.htaccessに配置できないRewriteMapディレクティブを使用する必要があります(サーバー構成/ VirtualHostコンテキストのみ)。そのようなアクセス権がある場合:

1。サイトの<VirtualHost>ブロック内に次の行を配置します。

RewriteMap lc int:tolower

2。これを.htaccessに配置します。

RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule . ${lc:%{REQUEST_URI}} [R=301,L]

これにより、(301 Permanent Redirect)少なくとも1つの大文字を含むURL(ラテン文字のみ)in URLのパス部分(クエリ文字列は無視されます)を同じで小文字にします。

例:

http://mydomain.com/myfolder-sample-URL.html
=> 
http://mydomain.com/myfolder-sample-url.html

http://mydomain.com/myfolder-sample-url.HTML
=> 
http://mydomain.com/myfolder-sample-url.html

これらのURLには何もしません:

http://mydomain.com/myfolder-sample-url.html?say=MEOW
http://MYDOMAIN.com/myfolder-sample-url.html

。htmlファイルのみに制限する場合:

RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule ^.+\.html$ ${lc:%{REQUEST_URI}} [NC,R=301,L]

配置場所:ドメイン名リダイレクト規則の後に配置します:

RewriteEngine On

RewriteCond %{HTTP_Host} ^domain\.com [NC]
RewriteRule (.*) http://mydomain.com/$1 [L,R=301]

RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule . ${lc:%{REQUEST_URI}} [R=301,L]

# your other rules

また、rel = "canonical"リンクの使用をお勧めします。

<link rel="canonical" href="PROPER_URL_HERE" />

リダイレクトが必要ではなく、ファイル名の大文字小文字(大文字と小文字を区別しないファイル名)に関係なくファイルを提供する機能がある場合は、mod_spellingを使用できます( http://httpd.Apache.org/docs/current/mod/mod_speling.html )およびCheckCaseOnly Onディレクティブ。

9
LazyOne

。htaccessの先頭に追加します

SOURCE: 大文字を小文字にリダイレクトするためのアクセス

RewriteEngine On
RewriteBase /

# If there are caps, set HASCAPS to true and skip next rule
RewriteRule [A-Z] - [E=HASCAPS:TRUE,S=1]

# Skip this entire section if no uppercase letters in requested URL
RewriteRule ![A-Z] - [S=28]

# Replace single occurance of CAP with cap, then process next Rule.
RewriteRule ^([^A]*)A(.*)$ $1a$2
RewriteRule ^([^B]*)B(.*)$ $1b$2
RewriteRule ^([^C]*)C(.*)$ $1c$2
RewriteRule ^([^D]*)D(.*)$ $1d$2
RewriteRule ^([^E]*)E(.*)$ $1e$2
RewriteRule ^([^F]*)F(.*)$ $1f$2
RewriteRule ^([^G]*)G(.*)$ $1g$2
RewriteRule ^([^H]*)H(.*)$ $1h$2
RewriteRule ^([^I]*)I(.*)$ $1i$2
RewriteRule ^([^J]*)J(.*)$ $1j$2
RewriteRule ^([^K]*)K(.*)$ $1k$2
RewriteRule ^([^L]*)L(.*)$ $1l$2
RewriteRule ^([^M]*)M(.*)$ $1m$2
RewriteRule ^([^N]*)N(.*)$ $1n$2
RewriteRule ^([^O]*)O(.*)$ $1o$2
RewriteRule ^([^P]*)P(.*)$ $1p$2
RewriteRule ^([^Q]*)Q(.*)$ $1q$2
RewriteRule ^([^R]*)R(.*)$ $1r$2
RewriteRule ^([^S]*)S(.*)$ $1s$2
RewriteRule ^([^T]*)T(.*)$ $1t$2
RewriteRule ^([^U]*)U(.*)$ $1u$2
RewriteRule ^([^V]*)V(.*)$ $1v$2
RewriteRule ^([^W]*)W(.*)$ $1w$2
RewriteRule ^([^X]*)X(.*)$ $1x$2
RewriteRule ^([^Y]*)Y(.*)$ $1y$2
RewriteRule ^([^Z]*)Z(.*)$ $1z$2

# If there are any uppercase letters, restart at very first RewriteRule in file.
RewriteRule [A-Z] - [N]

RewriteCond %{ENV:HASCAPS} TRUE
RewriteRule ^/?(.*) /$1 [R=301,L]

または、ホストがmod_spelingをサポートする場合があります。mod_spelingを使用する場合は、サーバー構成、仮想ホスト、ディレクトリ、または.htaccessファイル内で使用できます。以下に例を示します:

<IfModule mod_speling.c>
    CheckCaseOnly On
    CheckSpelling On
</IfModule>
2
Simon Hayter