2017-09-23 1 views
0

Der Standort in Frage Umleitung ist https://thefriendlygearpage.com.htaccess nicht alle Seiten nicht www Version

Wenn Sie besuchen das, sehen Sie, es funktioniert gut. Jetzt

gehen zu https://www.thefriendlygearpage.com

Es funktioniert nicht, und wenn man sich die URL-Leiste sieht, fällt ihm die .com vom Ende.

gehen nicht zu https://www.thefriendlygearpage.com/forums/forum-issues-reporting.230/

Diese Seite funktioniert gut und leitet Sie auf die nicht www-Version der Seite, wie es sollte.

In der Nähe wie ich sagen kann, funktioniert jede Seite auf der Website gut, außer für die Homepage. Wenn Sie auf die www-Version der Website gehen, sollte es Sie auf die Nicht-www-Version umleiten, schlicht und einfach.

Hier ist meine .htaccess-Datei, nur wenn es hilft. Ich bin hier ratlos!

# Mod_security can interfere with uploading of content such as attachments. If you 
# cannot attach files, remove the "#" from the lines below. 
#<IfModule mod_security.c> 
# SecFilterEngine Off 
# SecFilterScanPOST Off 
#</IfModule> 

ErrorDocument 401 default 
ErrorDocument 403 default 
ErrorDocument 404 default 
ErrorDocument 405 default 
ErrorDocument 406 default 
ErrorDocument 500 default 
ErrorDocument 501 default 
ErrorDocument 503 default 

<IfModule mod_rewrite.c> 
RewriteEngine On 
RewriteCond %{HTTPS} off 
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] 

RewriteEngine on 
RewriteCond %{HTTP_HOST} ^www\.thefriendlygearpage\.com [NC] 
RewriteRule ^(.*)$ https://thefriendlygearpage.com/$1 [L,R=301] 

RewriteEngine On 

# If you are having problems with the rewrite rules, remove the "#" from the 
# line that begins "RewriteBase" below. You will also have to change the path 
# of the rewrite to reflect the path to your XenForo installation. 
#RewriteBase /xenforo 

# This line may be needed to enable WebDAV editing with PHP as a CGI. 
#RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] 

RewriteCond %{REQUEST_FILENAME} -f [OR] 
RewriteCond %{REQUEST_FILENAME} -l [OR] 
RewriteCond %{REQUEST_FILENAME} -d 
RewriteRule ^.*$ - [NC,L] 
RewriteRule ^(data/|js/|styles/|install/|favicon\.ico|crossdomain\.xml|robots\.txt) - [NC,L] 
RewriteRule ^.*$ index.php [NC,L] 
</IfModule> 

Antwort

0

Wow ... dumm mich. Es war nichts mehr als ein zwischengespeicherter Browserfehler. Ich habe meinen Browser-Cache gelöscht und es funktioniert jetzt einwandfrei.

Verwandte Themen