Here is the link of subfolder
https://example.com/abc/ i want to add www to subfolders also like this https://www.example.com/abc/
Here is the link of subfolder
https://example.com/abc/ i want to add www to subfolders also like this https://www.example.com/abc/
To force WWW, simply use:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]