registrieren registriertes Mitglied


Anzeige

Anzeige

rewrite auf SSL funktioniert im Firefox nicht

Alles zu Domain-Umzug, Weiterleitungen und Robots diskutiert Ihr hier.
stefanbeiabakus
PostRank 1
PostRank 1
Beiträge: 2
Registriert: 12.03.2017, 09:38

Beitrag stefanbeiabakus » 12.03.2017, 09:51 rewrite auf SSL funktioniert im Firefox nicht

Hallo zusammen,

ich habe in der ".htaccess" eine rewrite-Funktion auf https eingefügt (im mittleren Bereich - bei den ifmodulen). "Seltsamerweise" funktioniert die Umschreibung auf SSL nicht im Firefox-Browser. Sonst überall. Ich habe die Vermutung, dass sich irgendwo in der Datei eine störende Funktion befindet. Daher hier der vollständige Inhalt. Vielleicht fällt ja einem von euch dazu etwas ein und danke im Voraus:

##
# @package Joomla
# @copyright Copyright (C) 2005 - 2013 Open Source Matters. All rights reserved.
# @license GNU General Public License version 2 or later; see LICENSE.txt
##

##
# READ THIS COMPLETELY IF YOU CHOOSE TO USE THIS FILE!
#
# The line just below this section: 'Options +FollowSymLinks' may cause problems
# with some server configurations. It is required for use of mod_rewrite, but may already
# be set by your server administrator in a way that dissallows changing it in
# your .htaccess file. If using it causes your server to error out, comment it out (add # to
# beginning of line), reload your site in your browser and test your sef url's. If they work,
# it has been set by your server administrator and you do not need it set here.
##

## Can be commented out if causes errors, see notes above.
Options +FollowSymLinks

## Mod_rewrite in use.

<ifmodule mod_rewrite.c="">
RewriteEngine On
RewriteCond %{SERVER_PORT} !^443$
RewriteRule (.*) https://www.meine-domain.com/$1 [R=301,L]
</ifmodule>


## End - Custom redirects

##
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update Your Joomla! Directory (just / for root).
##

RewriteBase /

## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTPS_AUTHORIZATION:%{HTTPS:Authorization}]
#
# If the requested path and file is not /index.php and the request
# has not already been internally rewritten to the index.php script
RewriteCond %{REQUEST_URI} !^/index\.php
# and the request is for something within the component folder,
# or for the site root, or for an extensionless URL, or the
# requested URL ends with one of the listed extensions
RewriteCond %{REQUEST_URI} /component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$ [NC]
# and the requested path and file doesn't directly match a physical file
RewriteCond %{REQUEST_FILENAME} !-f
# and the requested path and file doesn't directly match a physical folder
RewriteCond %{REQUEST_FILENAME} !-d
# internally rewrite the request to the index.php script
RewriteRule .* index.php [L]
#
## End - Joomla! core SEF Section.

Anzeige von: