hlivnjak
Member
Posted 5 years ago #
Hey people,
I've checked my blog database in CPanel and everything is working ok
But fore some weird reason when I want to go to my blog http://www.ecoverslab.com/blog it always get's http://ecoverslab.com/blog and my links are all linked to www in my wordpress
Do you maybe know why?
Thanks
Take a look at your .htaccess (main, usually these url-rewriting is done there.
Like
RewriteCond %{HTTP_HOST} ^www.domain.com$ [NC]
RewriteRule ^(.*) http://domain.org/$1 [L,R=301]
hlivnjak
Member
Posted 5 years ago #
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
Still problem
I can access http://www.ecoverslab.com/blog/ now without redirection, did you change anything?