Problem with dynamic data on my website

0

Good morning,

I have a problem and that is that my website has some data that is updated with an accountant through an api that provides the data and if I put www.xxxx it does not load the data but without the www. if he loads them correctly.

What can I look or do?

Thank you!

    
asked by david 23.01.2018 в 14:35
source

1 answer

0

Are you using Apache? try to make Apache automatically redirect your site. These lines should include them in an .htaccess file in the root of your public space.

RewriteEngine On
RewriteCond %{HTTP_HOST} ^xxxx.com [NC]

RewriteRule ^(.*)$ http://www.xxxx.com/$1[L,R=301]

    
answered by 23.01.2018 в 14:46