Mobile app version of vmapp.org
Login or Join
Ravi8258870

: Sub-Domain Redirect Loop .htacess OK so i am getting a redirect loop on subdomains only and i dont see the whats creating the loop This is a WordPress Multi-Site sub-domain installation and

@Ravi8258870

Posted in: #Htaccess #Redirects #Subdomain #Wordpress

OK so i am getting a redirect loop on subdomains only and i dont see the whats creating the loop

This is a WordPress Multi-Site sub-domain installation and All plugins are disabled everything on the Primary domain works fine.

The loop happens regardless of weather plugins are active or not.

I could use some help with this

Thanks

Notes:

Apache server / Cpanel / Latest WordPress / Latest ClassiPress Theme /Latest Assorted plugins

Header set Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" env=HTTPS

# BEGIN NON-WWW REDIRECT RULES
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]
RewriteRule ^ %1%{REQUEST_URI} [R=301,L]

RewriteCond %{HTTPS} on
RewriteCond %{HTTP_HOST} ^www.(.+)$ [NC]
RewriteRule ^ %1%{REQUEST_URI} [R=301,L]

# END NON-WWW REDIRECT RULES

# BEGIN SSL REDIRECT RULE
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) %{SERVER_NAME}/ [R,L]
# END SSL REDIRECT RULE

RewriteEngine On
RewriteBase /
RewriteRule ^index.php$ - [L]

# BEGIN IE COMPATABILITY
<FilesMatch ".(htm|html|php)$">

<IfModule mod_headers.c>

BrowserMatch MSIE ie

Header set X-UA-Compatible "IE=Edge,chrome=1" env=ie

</IfModule>

</FilesMatch>

# END IE COMPATABILITY

# add a trailing slash to /wp-admin DISABLED (REMOVE HASHTAG)
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ wp-admin/ [R=301,L]

RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-(content|admin|includes).*) [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ [L]
RewriteRule . index.php [L]

AddHandler application/x-httpd-php55 .php55 .php

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Ravi8258870

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme