Are you looking to force your SMPP Center’s application hosted website with Non-WWW or WWW? The following trick help you achieve the goal.
Forcing Non-WWW to WWW
If you are looking to force all your users who uses http://example.com to http://www.example.com then follow the snippet.
If you have hosted SMPP Center application on the root directory and using it on main domain, then paste the following code after RewriteBase /
RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
If you are planning to install SMPP Center
RewriteCond %{HTTP_HOST} ^www.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/demo/$1 [R=301,L]
Forcing WWW to Non-WWW
If you are looking to force all your users who use http://www.example.com to http://example.com then follow the snippet.
If you are hoping to install the SMPP Center application in your root folder then paste the following code after RewriteBase /
RewriteCond %{HTTP_HOST} !^www. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
If you are hoping to install the SMPP Center application in your subfolder then paste the following code after RewriteBase / but replace demo with your subfolder name.
RewriteCond %{HTTP_HOST} !^www. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/demo/$1 [R=301,L]