Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
Entweder auf etwas vorhandenes umleiten, wobei mir aber gerade nicht einfällt auf was (vielleicht ein Bild das signalisiert "Anhang gelöscht"?) oder händisch löschen.Die werden normalerweise sauber weitergeleitet, aber in diesem Fall handelt es sich um Anhänge, die nicht mehr vorhanden sind.
Habt ihr eine Idee wie ich bei diesen 1500 Urls den 404 Fehler verhindern kann?
Das unterscheidet sich doch von den Bildadressen in XF2 und müsste sich der Datenbank finden lassen wenn man nach forum/attachment.php?attachmentid= sucht. Leider dauert das ein bisschen bis man die alle aus den Beiträgen in der Datenbank gelöscht hat.forum/attachment.php?attachmentid=94405
jage deine Seite durch das ToolDer Punkt ist, dass nur diese 1500 gelöscht/umgeleitet werden sollen. Die anderen Bilder, die noch vorhanden sind und umgeleitet werden, will ich nicht anfassen.
Das sieht wohl nach Handarbeit aus....
Auch dann findet eine doppelte Umleitung statt.
# 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
RewriteEngine On
RewriteCond %{HTTPS} !=On [NC,OR]
RewriteCond %{HTTP_HOST} !=www.kuechen-forum.de [NC]
RewriteRule ^(.*)$ https://www.kuechen-forum.de/forum/$1 [R=301,L]
RewriteRule [^/]+/([0-9]+)-[^/]+\.html https://www.kuechen-forum.de/forum/showthread.php?t=$1 [L,R=301]
RewriteRule [^/]+/([\d]+)-.+-([\d]+).html https://www.kuechen-forum.de/forum/showthread.php?t=$1&page=$2 [NC,L]
#RewriteRule [^/]+/([0-9]+)-[^/]+\.html forum/showthread.php?t=$1 [L,R=301]
#RewriteRule [^/]+/([\d]+)-.+-([\d]+).html forum/showthread.php?t=$1&page=$2 [NC,L]
#RewriteBase /forum
#RewriteRule ^attachments/[^/]+/(\d+)d(\d+)-[^\.]+\.jpg$ attachments/$1 [L,R=301]
#RewriteRule ^attachments/[^/]+/(\d+) attachments/$1 [L,R=301]
#RewriteRule ^attachments/(.+)/([0-9]+)[d-](.+)$ attachment.php?attachmentid=$2 [L]
#RewriteRule ^attachments/(.+)/([0-9]+)[d-](.+)$ attachment.php?attachmentid=$1 [L]
#RewriteRule ^attachments/(.+)/(.+)_([0-9]+)\.([a-zA-Z0-9]+)$ attachment.php?attachmentid=$3 [L]
#RewriteRule ^attachments/[^/]+/(\d+) attachments/$1 [L,R=301]
RewriteRule ^attachments/[^/]+/(\d+) /forum/attachments/$1 [L,R=301]
RewriteRule ^mitglieder/([^/]+)-(\d+)\.html$ mitglieder/$1.$2/ [R=Permanent,L]
RewriteRule ^galerie/mitglieder/([^/]+)\.(\d+)/alben$ galerie/mitglieder/$1.$2/ [R=Permanent,L]
RewriteRule ^galerie/users/([^/]+)\.(\d+)/albums$ galerie/mitglieder/$1.$2/ [R=Permanent,L]
#RewriteRule [^/]+-album([0-9]+)-[^/]+\.html https://www.kuechen-forum.de/forum/album.php?albumid=$1 [L,R=301]
#RewriteCond %{QUERY_STRING} (^|\?)albumid=([0-9]+)($|&)
#RewriteRule ^album\.php$ /forum/galerie/alben/%2/? [R=301,L]
RewriteRule [^/]+-picture([0-9]+)-[^/]+\.html https://www.kuechen-forum.de/forum/picture.php?pictureid=$1 [L,R=301]
RewriteCond %{QUERY_STRING} pictureid=([0-9]+)($|&)
RewriteRule ^picture\.php$ /forum/galerie/%1/full? [R=301,L]
#RewriteCond %{QUERY_STRING} pictureid=([0-9]+)($|&)
#RewriteRule ^album\.php$ /forum/galerie/%1/full? [R=301,L]
## No directory listings
IndexIgnore *
## Can be commented out if causes errors, see notes above.
##Options +FollowSymlinks
##Options -Indexes
## Mod_rewrite in use.
RewriteEngine On
<FilesMatch "\.(php)$">
<ifModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</ifModule>
</FilesMatch>
<FilesMatch "\.(gif|ico|jpeg|jpe|jpg|png|css|js)$">
<ifModule mod_headers.c>
Header set Cache-Control "max-age=604800, public"
</ifModule>
</FilesMatch>
RewriteCond %{HTTPS} !=On [NC,OR]
RewriteCond %{HTTP_HOST} !=www.kuechen-forum.de [NC]
RewriteRule ^(.*)$ https://www.kuechen-forum.de/$1 [R=301,L]
Redirect /vbulletin/ https://www.kuechen-forum.de/forum/
Redirect /forum/external.php https://www.kuechen-forum.de/forum/kategorien/-/index.rss
#################################################
##### 2. FILTERS #####
#################################################
########## Begin - Rewrite rules to block out some common exploits
# If the request query string contains /proc/self/environ (by SigSiu.net)
RewriteCond %{QUERY_STRING} proc/self/environ [OR]
# Block out any script trying to set a mosConfig value through the URL
RewriteCond %{QUERY_STRING} mosConfig_[a-zA-Z_]{1,21}(=|\%3D) [OR]
# Block out any script trying to base64_encode or base64_decode data within the URL
RewriteCond %{QUERY_STRING} base64_(en|de)code[^(]*\([^)]*\) [OR]
## IMPORTANT: If the above line throws an HTTP 500 error, replace it with these 2 lines:
# RewriteCond %{QUERY_STRING} base64_encode\(.*\) [OR]
# Block out any script that includes a <script> tag in URL
RewriteCond %{QUERY_STRING} (<|%3C)([^s]*s)+cript.*(>|%3E) [NC,OR]
# Block out any script trying to set a PHP GLOBALS variable via URL
RewriteCond %{QUERY_STRING} GLOBALS(=|\[|\%[0-9A-Z]{0,2}) [OR]
# Block out any script trying to modify a _REQUEST variable via URL
RewriteCond %{QUERY_STRING} _REQUEST(=|\[|\%[0-9A-Z]{0,2})
# Return 403 Forbidden header and show the content of the root homepage
RewriteRule .* index.php [F]
#
########## End - Rewrite rules to block out some common exploits
## Begin - Custom redirects
## End - Custom redirects
#################################################
##### 5. SPAM Filter #####
#################################################
########## Begin - Basic antispam Filter, by SigSiu.net
RewriteCond %{QUERY_STRING} \b(ambien|blue\spill|cialis|cocaine|ejaculation|erectile)\b [NC,OR]
RewriteCond %{QUERY_STRING} \b(erections|hoodia|huronriveracres|impotence|levitra|libido)\b [NC,OR]
RewriteCond %{QUERY_STRING} \b(lipitor|phentermin|pro[sz]ac|sandyauer|tramadol|troyhamby)\b [NC,OR]
RewriteCond %{QUERY_STRING} \b(ultram|unicauca|valium|viagra|vicodin|xanax|ypxaieo)\b [NC]
RewriteRule .* - [F]
########## End - Basic antispam Filter, by SigSiu.net
## Begin - Joomla! core SEF Section.
#
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP: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 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.
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]
Redirect 301 /forum/neuigkeiten/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=53
Redirect 301 /forum/vorlagen/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=114
Redirect 301 /forum/umfrageergebnisse/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=135
Redirect 301 /forum/events/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=99
Redirect 301 /forum/kuechenkauf-nach-meterpreis-kuechenstudios/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=158
Redirect 301 /forum/neff-in-bretten/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=163
Redirect 301 /forum/qualitaetsmerkmale-kuechenhersteller/ https://www.kuechen-forum.de/qualitaetsmerkmale-kuechenhersteller/
Redirect 301 /forum/teilaspekte-zur-kuechenplanung/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=52
Redirect 301 /forum/einbaugeraete/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=122
Redirect 301 /forum/dunstabzugshauben-und-lueftungstechnik/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=157
Redirect 301 /forum/kuechenmoebel/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=123
Redirect 301 /forum/spuelen-und-zubehoer/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=124
Redirect 301 /forum/kuechen-ambiente/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=77
Redirect 301 /forum/kuechenplanung-im-planungs-board/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=63
Redirect 301 /forum/planungshilfen/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=106
Redirect 301 /forum/tipps-und-tricks/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=101
Redirect 301 /forum/reinigung/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=102
Redirect 301 /forum/do-it-yourself/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=103
Redirect 301 /forum/kueche-und-recht/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=104
Redirect 301 /forum/maengel-und-loesungen/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=55
Redirect 301 /forum/maengel-und-loesungen https://www.kuechen-forum.de/forum/forumdisplay.php?f=55
Redirect 301 /forum/montagefehler/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=154
Redirect 301 /forum/planungsfehler/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=155
Redirect 301 /forum/herstellerfehler/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=156
Redirect 301 /forum/feedback-zum-forum/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=59
Redirect 301 /forum/jobs-karriere-und-co/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=66
Redirect 301 /forum/montage-details/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=60
Redirect 301 /forum/tipps-und-tricks-zur-kuechenmontage/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=61
Redirect 301 /forum/haustechnik/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=92
Redirect 301 /forum/elektro/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=93
Redirect 301 /forum/sanitaer/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=94
Redirect 301 /forum/lueftung/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=95
Redirect 301 /forum/heizung/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=96
Redirect 301 /forum/off-topic-board/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=65
Redirect 301 /forum/kategorien/qualitaetsmerkmale-kuechenhersteller.74/ https://www.kuechen-forum.de/qualitaetsmerkmale-kuechenhersteller/
Redirect 301 /forum/forums/74/ https://www.kuechen-forum.de/qualitaetsmerkmale-kuechenhersteller/
Redirect 301 /forum/planungs-board/ https://www.kuechen-forum.de/forum/forumdisplay.php?f=63
# 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 /forum
# 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]
Wir verwenden essentielle Cookies, damit diese Website funktioniert, und optionale Cookies, um den Komfort bei der Nutzung zu verbessern.
Siehe weitere Informationen und konfiguriere deine Einstellungen