একটি ইউআরএল থেকে www যোগ করা
From Joomla! Documentation
Outdated translations are marked like this.
কিভাবে আমি আমার জুমলাতে একটি উপসর্গ হিসাবে www পেতে পারি! সাইট?
আপনার .htaccess ফাইলে নিম্নলিখিতটি যুক্ত করুন:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^(www\.example\.com)?$
RewriteRule (.*) http://www.example.com/$1 [R=301,L]
একই সময়ে বেশ কিছু অন্যান্য ক্যানোনিকালাইজেশন সমস্যা সমাধানের একটি সম্পূর্ণ সমাধান:
RewriteEngine On
#
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.html?\ HTTP/
RewriteRule ^(([^/]+/)*)index\.html?$ http://www.example.com/$1 [R=301,L]
#
RewriteCond %{THE_REQUEST} !^POST
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /([^/]+/)*index\.php\ HTTP/
RewriteCond %{SERVER_PORT}>s ^(443>(s)|[0-9]+>s)$
RewriteRule ^(([^/]+/)*)index\.php$ http%2://www.example.com/$1 [R=301,L]
#
RewriteCond %{HTTP_HOST} !^(www\.example\.com)?$
RewriteRule (.*) http://www.example.com/$1 [R=301,L]