When i try to access the resource on the browser like below
It automaticly Became like this and causing error
It is working fine without www. but i need to load the web with www.
Any advice?
Here is my .htaccess
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews -Indexes
</IfModule>
# Handle Authorization Header
RewriteCond %{HTTP:Authorization} .
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule ^ %1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</IfModule>
It is working fine too for images and css files.. but not for js files
Css Example
Image Example
UPDATE
looks like the problem only occured on a js file that has more than 1 dot.. for example https://www.testweb.com/js/bootstrap.js has 1 dot in bootstrap.js and it's working fine but https://www.testweb.com/js/bootstrap.min.js has 2 dots.. and it caused double www
Any Clue?