I hope someone can help me.
I have this subdomain: test.anexinet.com
and redirects me to main domain: anexinet.com
this is my .htaccess (of the subdomain)
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
I would like to avoid this redirect, try several codes provided by Wordpress but nothing works, can someone help me?