1

Magentoサイトの読み込み中に1つの問題に直面しています。サイトを更新するときはサイトの読み込みに時間がかかるので、magentoサイトの読み込み時間を短縮したいので、サイトの読み込み速度を上げてサイトを高速化する方法を教えてください。

私のサイトにはたくさんの画像が含まれているので、サイトの読み込みには時間がかかると思います。

私はすでにこのリンク[ http://imwill.com/magento-image-compression-solution/#.USXC1B1HJyw ]で提案されているように画像を圧縮しようとしていますが、それでも同じ問題に直面しています。

だから私は誰かが私のサイトをスピードアップするのを手伝ってくれる人がここにいることを願っています。

親切な対応をお待ちしております

4

3 に答える 3

1

.htaccessファイルに以下のコードを追加します

<IfModule mod_expires.c>
 ExpiresActive on
 ExpiresDefault "access plus 1 year"

 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 image/svg+xml "access plus 1 month"
 ExpiresByType text/css "access 1 month"
 ExpiresByType application/pdf "access 1 month"
 ExpiresByType application/x-javascript "access 1 month"
 ExpiresByType application/x-shockwave-flash "access 1 month"
 ExpiresByType image/x-icon "access 1 year"    
 ExpiresByType application/javascript "access plus 1 year"
 ExpiresByType font/truetype "access plus 1 month"
 ExpiresByType font/opentype "access plus 1 month"
 ExpiresByType application/x-font-woff   "access plus 1 month"   
 ExpiresByType application/vnd.ms-fontobject "access plus 1 month"
</IfModule>

<ifModule mod_gzip.c>
  mod_gzip_on Yes
  mod_gzip_dechunk Yes
  mod_gzip_item_include file \.(html?|txt|css|js|php|pl|asp|html|woff)$
  mod_gzip_item_include handler ^cgi-script$
  mod_gzip_item_include mime ^text/.*
  mod_gzip_item_include mime ^application/x-javascript.*
  mod_gzip_item_exclude mime ^image/.*
  mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*
</ifModule>

<IfModule mod_headers.c>
  Header set Connection keep-alive     
  <FilesMatch ".(js|css|xml|gz|html)$">
    Header append Vary: Accept-Encoding
  </FilesMatch>
  <FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)(\.gz)?$">        
    Header unset ETag
    FileETag None
  </FilesMatch>
</IfModule>

<IfModule mod_deflate.c>
  # Compress HTML, CSS, JavaScript, Text, XML and fonts
  AddOutputFilterByType DEFLATE application/javascript
  AddOutputFilterByType DEFLATE application/rss+xml
  AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
  AddOutputFilterByType DEFLATE application/x-font
  AddOutputFilterByType DEFLATE application/x-font-opentype
  AddOutputFilterByType DEFLATE application/x-font-otf
  AddOutputFilterByType DEFLATE application/x-font-truetype
  AddOutputFilterByType DEFLATE application/x-font-ttf
  AddOutputFilterByType DEFLATE application/x-javascript
  AddOutputFilterByType DEFLATE application/xhtml+xml
  AddOutputFilterByType DEFLATE application/xml
  AddOutputFilterByType DEFLATE font/opentype
  AddOutputFilterByType DEFLATE font/otf
  AddOutputFilterByType DEFLATE font/ttf
  AddOutputFilterByType DEFLATE image/svg+xml
  AddOutputFilterByType DEFLATE image/x-icon
  AddOutputFilterByType DEFLATE text/css
  AddOutputFilterByType DEFLATE text/html
  AddOutputFilterByType DEFLATE text/javascript
  AddOutputFilterByType DEFLATE text/plain
  AddOutputFilterByType DEFLATE text/xml

  # Remove browser bugs (only needed for really old browsers)
  BrowserMatch ^Mozilla/4 gzip-only-text/html
  BrowserMatch ^Mozilla/4\.0[678] no-gzip
  BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
  Header append Vary User-Agent
</IfModule>
于 2015-06-22T09:56:06.673 に答える
0

これについてはすでにネット上にたくさんの記事があります。

画像と静的ファイルの場合

  • CDNを使用する(画像、js、css)

キャッシング用

  • memcacheを実装する

PHPファイルのコンパイル用

  • PHPのAPC拡張機能を有効にするか、Magentoのコンパイルを有効にします([管理]>[システム]>[ツール]>[コンパイル])

Mysqlのパフォーマンス

  • 最適なパフォーマンスのためにMysqlを微調整します(使用法に応じてmysqlのquery_cache_sizeなどを増やします)
  • データベース要求が多い場合は、Mysqlマスタースレーブレプリケーションを使用します

Magentoの最適化

  • 使用していないモジュールを無効にする
  • コードを確認して最適化する

これは始まりです..あなたは多くのことをする必要があるでしょう..

于 2013-02-21T07:55:39.887 に答える
0

読み込み速度を向上させるには、Webページの速度最適化手法を使用する必要があります。私はここの投稿を読んでこの情報を知るようになりました。これは私のmagentoストアをスピードアップするのに役立ちました。それは私のために働いた。確かにこれらの方法に従うと、問題を修正するのに役立ちます。

于 2017-03-10T05:37:16.620 に答える