การเปลี่ยน url จาก http://example.com/ ให้เป็น http://www.example.com/ โดยใช้ไฟล์ .htaccess
กระทำโดยดังนี้ครับ
Redirect users to access the site with “www”
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.example\.com$ [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301]
new file ชื่อ .htaccess ขึ้นมาแล้วใส่ code ข้างบนลงไปครับจากนั้นทำการ upload ไปไว้ใน web directory ครับ
ตัวอย่างผลลัพท์ที่ได้(อ่านเพิ่มเติม…)
» Read the rest of the entry..
