Skip to main content

มาเร่งความเร็วเว็บเราด้วย .htaccess

มาเร่งความเร็วเว็บเราด้วย .htaccess กันง่ายๆ เลยครับ หากคุณใช้ แมมโบ้(mambo) จูมล่า(joomla) หรือ สคริปอื่นๆ แม้แต่ html ธรรมดา ทางโฮส colorpack.net เปิด mod_rewrite ให้คุณใช้ .htaccess ได้ โดย ใน cms หลายๆ ตัว จะทำให้ url ของคุณดูง่ายขึ้น และ ทำ seo ได้ด้วย ส่วนการเร่งความเร็ว ก็แค่ใส่ code ด้านล่างนี้ลงไป ใน ไฟล์ .htaccess ของคุณ ก็เป็นอันเรียบร้อย

 

 

# Configures the caching expiry date for browser caching of static files.

<IfModule mod_expires.c>
  <FilesMatch "\.(jpg|jpeg|gif|png|mp3|flv|mov|avi|3pg|html|htm|swf)$">
       ExpiresActive on
       ExpiresDefault "access plus 1 year"
   </FilesMatch>
</IfModule>
 

### CONFIGURE ETAGS    ###############################################################

# Configures E-tag headers to be sent with static content. Basically the browser

# updates it cache if this header changes.

<FilesMatch "\.(jpg|jpeg|gif|png|mp3|flv|mov|avi|3pg|html|htm|swf)$">
    FileETag MTime Size
</FilesMatch>
 

  • Hits: 8093