[3.2] [erledigt] Habe umschreiben von URLs aktiviert

Fragen rund um die Installation, Administration und Benutzung von phpBB.
Forumsregeln
Bitte im Thementitel den Präfix deiner phpBB-Version angeben
Antworten
Fritschie
Mitglied
Beiträge: 45
Registriert: 16.06.2018 09:38
Wohnort: Sachsen

[3.2] [erledigt] Habe umschreiben von URLs aktiviert

Beitrag von Fritschie »

Dadurch sind jetzt ein paar Seiten von phpbb nicht mehr erreichbar die da wären
"BB-Code Anleitung" und "FAQ zur Board-Software". (sind ja beide bestimmt in faq.php)
Diese beiden Seiten landen jetzt in einer 404 Seite.
Habt ihr eine Idee wo es da klemmen könnte und wie ich es wieder richten kann?
Danke für die Ideen
Jörg
Zuletzt geändert von Fritschie am 09.03.2019 10:14, insgesamt 1-mal geändert.
https://www.anlagenmeisterei.de
phpBB Version 3.3.11
Benutzeravatar
Crizzo
Administrator
Administrator
Beiträge: 11953
Registriert: 19.05.2005 21:45
Kontaktdaten:

Re: [3.2] Habe umschreiben von URLs aktiviert

Beitrag von Crizzo »

Hi,

die URL für die FAQ sieht dann umgeschrieben so aus:
https://example.org/help/faq

Also nichts mit .php

Grüße
Fritschie
Mitglied
Beiträge: 45
Registriert: 16.06.2018 09:38
Wohnort: Sachsen

Re: [3.2] Habe umschreiben von URLs aktiviert

Beitrag von Fritschie »

Das kann ich sehen aber genau das produziert die 404
Siehe den Link zum Board
https://www.anlagenmeisterei.de/help/faq --->404 Seite

Ist auch auf der linken Seite des Portals eingebunden
Jörg
https://www.anlagenmeisterei.de
phpBB Version 3.3.11
Benutzeravatar
Kirk
Supporter
Supporter
Beiträge: 7870
Registriert: 24.05.2010 08:31
Kontaktdaten:

Re: [3.2] Habe umschreiben von URLs aktiviert

Beitrag von Kirk »

So kann man deine FAQ aufrufen https://www.anlagenmeisterei.de/app.php/help/faq von daher ist bei dir das Modul mod_rewrit nicht vorhanden bzw. nicht verügbar, dazu musst du deinen Provider kontaktieren.
Hast du im ACP/Server und Domain die Funktion "Umschreiben von URLs aktivieren:" aktiviert?
Fritschie
Mitglied
Beiträge: 45
Registriert: 16.06.2018 09:38
Wohnort: Sachsen

Re: [3.2] Habe umschreiben von URLs aktiviert

Beitrag von Fritschie »

Ja im ACP ist der Eintrag aktiviert und in der htaccess ist Alles an

Code: Alles auswählen

Header set Strict-Transport-Security "max-age=31536000"
<IfModule mod_rewrite.c>
RewriteEngine on

#
# Uncomment the statement below if URL rewriting doesn't
# work properly. If you installed phpBB in a subdirectory
# of your site, properly set the argument for the statement.
# e.g.: if your domain is test.com and you installed phpBB
# in http://www.test.com/phpBB/index.php you have to set
# the statement RewriteBase /phpBB/
#
RewriteBase /

#
# Uncomment the statement below if you want to make use of
# HTTP authentication and it does not already work.
# This could be required if you are for example using PHP via Apache CGI.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]

#
# The following 3 lines will rewrite URLs passed through the front controller
# to not require app.php in the actual URL. In other words, a controller is
# by default accessed at /app.php/my/controller, but can also be accessed at
# /my/controller
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ app.php [QSA,L]

RewriteCond %{HTTPS} off
RewriteRule .* https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

#
# If symbolic links are not already being followed,
# uncomment the line below.
# http://anothersysadmin.wordpress.com/2008/06/10/mod_rewrite-forbidden-403-with-apache-228/
#
#Options +FollowSymLinks
</IfModule>

# With Apache 2.4 the "Order, Deny" syntax has been deprecated and moved from
# module mod_authz_host to a new module called mod_access_compat (which may be
# disabled) and a new "Require" syntax has been introduced to mod_authz_host.
# We could just conditionally provide both versions, but unfortunately Apache
# does not explicitly tell us its version if the module mod_version is not
# available. In this case, we check for the availability of module
# mod_authz_core (which should be on 2.4 or higher only) as a best guess.
<IfModule mod_version.c>
	<IfVersion < 2.4>
		<Files "config.php">
			Order Allow,Deny
			Deny from All
		</Files>
		<Files "common.php">
			Order Allow,Deny
			Deny from All
		</Files>
	</IfVersion>
	<IfVersion >= 2.4>
		<Files "config.php">
			Require all denied
		</Files>
		<Files "common.php">
			Require all denied
		</Files>
	</IfVersion>
</IfModule>
<IfModule !mod_version.c>
	<IfModule !mod_authz_core.c>
		<Files "config.php">
			Order Allow,Deny
			Deny from All
		</Files>
		<Files "common.php">
			Order Allow,Deny
			Deny from All
		</Files>
	</IfModule>
	<IfModule mod_authz_core.c>
		<Files "config.php">
			Require all denied
		</Files>
		<Files "common.php">
			Require all denied
		</Files>
	</IfModule>
</IfModule>
 
https://www.anlagenmeisterei.de
phpBB Version 3.3.11
Benutzeravatar
Mahony
Ehemaliges Teammitglied
Beiträge: 12178
Registriert: 17.11.2005 22:33
Wohnort: Ostfildern Kemnat
Kontaktdaten:

Re: [3.2] [erledigt] Habe umschreiben von URLs aktiviert

Beitrag von Mahony »

Hallo

Fritschie hat geschrieben:Ja im ACP ist der Eintrag aktiviert und in der htaccess ist Alles an
Wenn mod_rewrite auf dem Server nicht aktiviert ist, dann funktioniert das Umschreiben von URLs nicht, egal was du in die htaccess schreibst oder Im ACP aktivierst.

Die Lösung wurde dir ja schon gepostet
von daher ist bei dir das Modul mod_rewrit nicht vorhanden bzw. nicht verügbar, dazu musst du deinen Provider kontaktieren.
Grüße: Mahony
Taekwondo in Berlin
Wer fragt, ist ein Narr für fünf Minuten, wer nicht fragt, ist ein Narr für immer.
Antworten

Zurück zu „Support-Forum“