การเขียน mod rewrite เพื่อกำหนด ให้แสดงผล www.
ในกรณีที่ท่านต้องการกำหนดให้การเข้า ตัวอย่างเช่น เว็บของ EVO Hosting เว็บ evohosting.in.th แล้วแสดงผลเป็น www.evohosting.in.th ก็สามารถใช้ mod rewrite เข้ามาช่วย
โดยสร้างไฟล์ .htaccess แล้วนำไปใส่ไว้ใน folder public_html
โดยเขียน .htaccess ให้ใส่ข้อความดังนี้
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^evohosting\.in.th$
RewriteRule ^(.*)$ http://www.evohosting.in.th/$1 [R=301,L]
และในกระณีที่ต้องการบังคับแบบที่ไม่มี WWW ข้างหน้า URL ก็เขียน Code ดังนี้
Options +FollowSymLinks
Options +Indexes
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.evohosting\.in.th$
RewriteRule ^(.*)$ https://evohosting.in.th/$1 [R=301,L]
เพียงแค่นี้ ท่านก็สามารถกำหนดค่าตามที่ท่านต้องการได้แล้วครับ