0

誰かが私のhtaccessコードを見て、明らかに間違っているように見えるものがあるかどうか教えてくれるかどうか疑問に思っていました. 私はこのことについてあまり知りません。また、パーツを別の方法で編成する必要があるかどうか、または「RewriteEngine on RewriteBase /」を複数回配置する必要があるかどうかもわかりませんか? とにかく、ここにコードがあります:

RewriteEngine  on 
RewriteBase    / 

RewriteRule ^(.+)\.shtml$   $1.html [R=301,L] 

redirect 301 /games.html http://www.slimekids.com/games/
redirect 301 /trailers.html http://www.slimekids.com/book-trailers/
redirect 301 /authors.html http://www.slimekids.com/authors/
redirect 301 /reference.html http://www.slimekids.com/reference/
redirect 301 /reviews.html http://www.slimekids.com/book-reviews/
redirect 301 /searches.html http://www.slimekids.com/search-engines/

RewriteEngine on
RewriteBase /

#if the domain is not www.slimekids.com
RewriteCond %{HTTP_HOST} !^www\.slimekids\.com$ [NC]
#redirect to www.slimekids.com
RewriteRule ^(.*)$ http://www.slimekids.com/$1 [L,R=301]

#leave this rule in place, but after the one above to handle the home page
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/ 
RewriteRule ^index\.html$ http://www.slimekids.com/ [R=301,L] 

ErrorDocument 404 /404page.html

## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 year
ExpiresByType image/jpeg "access 1 year"
ExpiresByType image/gif "access 1 year"
ExpiresByType image/png "access 1 year"
ExpiresByType text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 year"
ExpiresDefault "access 2 days"
</IfModule>
## EXPIRES CACHING ##
4

2 に答える 2

0

新しく改善された htaccess。うまくいけば、これですべてがうまくいきます。どうもありがとう。

RewriteEngine on
RewriteBase /

RewriteRule ^(.+)\.shtml$   $1.html [R=301,L] 

redirect 301 /games.html http://www.slimekids.com/games/
redirect 301 /trailers.html http://www.slimekids.com/book-trailers/
redirect 301 /authors.html http://www.slimekids.com/authors/
redirect 301 /reference.html http://www.slimekids.com/reference/
redirect 301 /reviews.html http://www.slimekids.com/book-reviews/
redirect 301 /searches.html http://www.slimekids.com/search-engines/

#if the domain is not www.slimekids.com
RewriteCond %{HTTP_HOST} !^www\.slimekids\.com$ [NC]
#redirect to www.slimekids.com
RewriteRule ^(.*)$ http://www.slimekids.com/$1 [L,R=301]

#leave this rule in place, but after the one above to handle the home page
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/ 
RewriteRule ^(.*)index\.html$ http://www.slimekids.com/$1 [R=301,L]

ErrorDocument 404 /404page.html

## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access 1 month"
ExpiresByType image/jpeg "access 1 month"
ExpiresByType image/gif "access 1 month"
ExpiresByType image/png "access 1 month"
ExpiresByType text/css "access 1 month"
ExpiresByType application/pdf "access 1 month"
ExpiresByType text/x-javascript "access 1 month"
ExpiresByType application/x-shockwave-flash "access 1 month"
ExpiresByType image/x-icon "access 1 month"
ExpiresDefault "access 2 days"
</IfModule>
## EXPIRES CACHING ##
于 2012-05-31T04:31:08.973 に答える
0

コードは問題ないようです。

あなたは正しいですRewriteEngine on、そしてRewriteBase /繰り返す必要はありません。

私は期限がかなり遠い未来にあることに気付きました。たとえば、イメージは 1 年後に期限切れになります。何かが変更されたときに、コードが何らかのキャッシュ無効化を使用している可能性があります。

URL から部分を削除する行を少し変更して、ルート ( )だけでなく、index.htmlサブフォルダー (例 ) でも機能するようにします。/games/index.html/index.html

#leave this rule in place, but after the one above to handle the home page
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.html\ HTTP/ 
RewriteRule ^(.*)index\.html$ http://www.slimekids.com/$1 [R=301,L] 
于 2012-05-30T10:05:48.050 に答える