Url এটাত www যোগ কৰা
From Joomla! Documentation
Outdated translations are marked like this.
মই মোৰ সকলো Joomla! ছাইটত উপসৰ্গ হিচাপে 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]