Error 1101 Ray ID: 933d97b85ab8a1b0 • 2025-04-21 14:32:46 UTC

Worker threw exception

What happened?

You've requested a page on a website (chomstat-tracker.webmaster-b61.workers.dev) that is on the Cloudflare network. An unknown error occurred while rendering the page.

What can I do?

If you are the owner of this website:
you should login to Cloudflare and check the error logs for chomstat-tracker.webmaster-b61.workers.dev.

Worker threw exception | chomstat-tracker.webmaster-b61.workers.dev | Cloudflare

Error 1101 Ray ID: 933d97b8fb69a1b4 • 2025-04-21 14:32:46 UTC

Worker threw exception

What happened?

You've requested a page on a website (chomstat-tracker.webmaster-b61.workers.dev) that is on the Cloudflare network. An unknown error occurred while rendering the page.

What can I do?

If you are the owner of this website:
you should login to Cloudflare and check the error logs for chomstat-tracker.webmaster-b61.workers.dev.

เว็บ ของคนใช้ Joomla มี คู่มือ Joomla และเทคนิคการใช้งานจูมล่า - การตั้งค่าให้ url มีหรือไม่มี www โดยใช้ htaccess
Skip to main content

การตั้งค่าให้ url มีหรือไม่มี www โดยใช้ htaccess

บางท่าน เจอปัญหาเว้บพอเข้าไปมี  www บ้างไม่มีบ้าง บางคนอยากให้มี บางคนอยากให้เอาออก สับสนวุ่นวายไปหมด  บางท่านบอกมีผลกับ SEO บางท่านบอกไม่มี แต่ผมก็มีให้ใใช้ทั้ง 2 แบบละครับ

 วิธีการคือ ให้นำ code ไปใส่ใน  ไฟล์ .htaccess เลือกเอาครับว่าอยากให้มีหรือไม่มี 

ให้มี www:


#Force www:

RewriteCond %{HTTP_HOST} ^example.com [NC]
RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301,NC]

 

ไม่มี www:

#Force non-www:

RewriteCond %{HTTP_HOST} ^www\.example\.com [NC]
RewriteRule ^(.*)$ http://example.com/$1 [L,R=301]

 

ตัวอย่าง การใส่ไปยัง .htaccess ของจูมล่า

htaccess-force-www

  • Hits: 6897