Results 1 to 9 of 9

301 fügt ?vbseourl= mit an

This is a discussion on 301 fügt ?vbseourl= mit an within the Deutsch forums, part of the General Discussion category; Hallo, ich habe eine 301 Weiterleitung in meiner .htaccess eingerichtet und nun wird bei einer Weiterleitung ein ?vbseourl= am Schluss ...

  1. #1
    Senior Member
    Real Name
    Antoine Monot, Jr.
    Join Date
    Nov 2005
    Location
    Zurich, Switzerland
    Posts
    141
    Liked
    0 times

    301 fügt ?vbseourl= mit an

    Hallo,

    ich habe eine 301 Weiterleitung in meiner .htaccess eingerichtet und nun wird bei einer Weiterleitung ein ?vbseourl= am Schluss mit drangehängt.

    Hier meine .htaccess

    Code:
    Redirect permanent /forum/typo3-mitglied http://www.typo3forum.net/forum/members
    Redirect permanent /typo3-3-8-x-installation-und http://www.typo3forum.net/forum/typo3-3-x-installation-und-updates
    Redirect permanent /typo3-3-8-x-fragen http://www.typo3forum.net/forum/typo3-3-x-fragen-und-probleme/
    Redirect permanent /typo3-3-8-x-probleme http://www.typo3forum.net/forum/typo3-3-x-fragen-und-probleme/
    Redirect permanent /typo3-3-7-x-installation-und http://www.typo3forum.net/forum/typo3-3-x-installation-und-updates
    Redirect permanent /typo3-3-7-x-fragen http://www.typo3forum.net/forum/typo3-3-x-fragen-und-probleme/
    Redirect permanent /typo3-3-7-x-probleme http://www.typo3forum.net/forum/typo3-3-x-fragen-und-probleme/
    Redirect permanent /typo3-3-6-x http://www.typo3forum.net/forum/typo3-3-x-installation-und-updates/
    Redirect permanent /typo3-3-6-x-installation-und http://www.typo3forum.net/forum/typo3-3-x-installation-und-updates
    Redirect permanent /typo3-3-6-x-fragen http://www.typo3forum.net/forum/typo3-3-x-fragen-und-probleme/
    Redirect permanent /typo3-3-6-x-probleme http://www.typo3forum.net/forum/typo3-3-x-fragen-und-probleme/
    Redirect permanent /news-tt_news-mininews-und-co http://www.typo3forum.net/forum/news-tt_news-mininews-und-co
    Redirect permanent /shop http://www.typo3forum.net/forum/shop
    Redirect permanent /templavoila http://www.typo3forum.net/forum/templavoila
    Redirect permanent /alle-anderen-extensions http://www.typo3forum.net/forum/alle-anderen-extensions
    Redirect permanent /extension-suchen-und-neue-vorschlagen http://www.typo3forum.net/forum/extension-suchen-und-neue-vorschlagen
    Redirect permanent /extension-modifizieren-oder-neu-erstellen http://www.typo3forum.net/forum/extension-modifizieren-oder-neu-erstellen
    Redirect permanent /entwicklungsteams http://www.typo3forum.net/forum/entwicklungsteams
    Redirect permanent /gmenu-hmenu-tmenu-und-co http://www.typo3forum.net/forum/gmenu-hmenu-tmenu-und-co
    Redirect permanent /html-css http://www.typo3forum.net/forum/html-css
    Redirect permanent /barrierefreiheit http://www.typo3forum.net/forum/barrierefreiheit
    Redirect permanent /deine-typo3-projekte http://www.typo3forum.net/forum/deine-typo3-projekte
    Redirect permanent /typo3-jobs http://www.typo3forum.net/forum/typo3-jobs
    Redirect permanent /typo3-provider http://www.typo3forum.net/forum/typo3-provider
    Redirect permanent /typo3-forum-news http://www.typo3forum.net/forum/typo3-forum-news
    Redirect permanent /forum-bar http://www.typo3forum.net/forum/forum-bar
    Redirect permanent /anderungen http://www.typo3forum.net/forum/anderungen
    Redirect permanent /typo3-forum-alpha http://www.typo3forum.net/forum/typo3-forum-alpha
    Redirect permanent /moderatoren http://www.typo3forum.net/forum/moderatoren
    Redirect permanent /admins http://www.typo3forum.net/forum/admins
    Redirect permanent /typo3-extensions http://www.typo3forum.net/forum/typo3-extensions
    Redirect permanent /typo3-menu http://www.typo3forum.net/forum/typo3-menu
    Redirect permanent /typo3-mitglied http://www.typo3forum.net/forum/typo3-mitglied
    Redirect permanent /external.php http://www.typo3forum.net/forum/external.php?type=rss
    Redirect permanent /search.php http://www.typo3forum.net/forum/search.php
    Redirect permanent /forum/typo3-4-0-x-installation-und http://www.typo3forum.net/forum/typo3-4-x-installation-und-updates/
    
    ### Begin: Rewrite stuff ###
    
    # Enable URL rewriting
    RewriteEngine On
    
    #Jetzt wird die Standarddomain festgelegt
    RewriteCond %{HTTP_HOST} !^www.typo3forum.net$
    RewriteRule ^(.*)$ http://www.typo3forum.net/$1 [L,R=301]
    
    # To assist in debugging rewriting, you could use these lines
    # DON'T enable it for production!
    # This will only work in httpd.conf, not in .htaccess files
    #RewriteLog /var/log/apache/rewrite.log
    #RewriteLogLevel 9
    
    # If you use the RealUrl extension, then you'll have to enable the next line.
    # You will have to change this path if your TYPO3 installation is located
    # in a subdirectory of the website root.
    # 
    # If you place this in httpd.conf, you cannot use this directive in any case!
    #RewriteBase /
    
    # Stop rewrite processing if we are in the typo3/ directory
    # For httpd.conf, use this line instead of the next one:
    # RewriteRule ^/TYPO3root/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/ - [L]
    RewriteRule ^(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/ - [L]
    
    # Redirect http://mysite/typo3 to http://mysite/typo3/index_re.php
    # and stop the rewrite processing
    # For httpd.conf, use this line instead of the next one:
    # RewriteRule ^/TYPO3root/typo3$ /TYPO3root/typo3/index.php [L]
    RewriteRule ^typo3$ typo3/index_re.php [L]
    
    # If the file/symlink/directory does not exist => Redirect to index.php
    # Important note: If you copy/paste this into httpd.conf instead
    # of .htaccess you will need to add '%{DOCUMENT_ROOT}' left to each
    # '%{REQUEST_FILENAME}' part.
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-l
    
    # Main URL rewriting.
    
    # If you use Windows and SimulateStaticDocuments do not work, try adding a
    # slash (/) right before 'index.php' below.
    
    # The example shows how to rewrite only *.html and *.pdf files to index.php
    # This may be helpful when using an extension that can generate PDF files
    # on the fly.
    # Example: RewriteRule .*\.(html|pdf)$ index.php [L]
    
    # For httpd.conf, use this line instead of the next one that has no '#':
    # RewriteRule .* /TYPO3root/index.php [L]
    
    # For use with the RealUrl extension, you might need to remove the
    # RewriteBase directive somewhere above and use this line instead of the
    # next one:
    # RewriteRule .* /index.php [L]
    
    RewriteRule .* index.php [L]
    
    ### End: Rewrite stuff ###
    Dier erste Zeile des Codes

    Code:
    Redirect permanent /forum/typo3-mitglied http://www.typo3forum.net/forum/members
    wird zu

    HTML Code:
    http://www.typo3forum.net/forum/members/daniel.html?vbseourl=typo3-mitglied/daniel.html
    Folgendes habe ich ausprobiert, hat aber nicht geholfen:

    Code:
    RewriteRule ^forum/typo3-mitglied$ http://www.typo3forum.net/forum/members [L,R=301]
    Vielen Dank für die Hilfe!

    Lieben Gruss

    Junior

  2. #2
    Senior Member
    Real Name
    Philipp Herbers
    Join Date
    Sep 2005
    Location
    Meppen, Germany
    Posts
    8,436
    Liked
    0 times
    Hallo,

    das erste was mir auffällt ist, dass deine Rewrite Regeln vor Rewrite Engine On steht.
    Dies solltest du ändern.
    Ich werde deine Frage weitergeben

  3. #3
    Senior Member
    Real Name
    Philipp Herbers
    Join Date
    Sep 2005
    Location
    Meppen, Germany
    Posts
    8,436
    Liked
    0 times
    Hey,

    dein Problem kann folgendermassen gelöst werden. Du solltest generell keine Redirects sondern Rewrite Regeln nutzen.

    Beispiel:

    folgenden Redirect
    Code:
    Redirect permanent /admins TYPO3 forum.net

    mit folgender Regel ersetzen:

    Code:
    RewriteRule admins$ TYPO3 forum.net [L,R=301]

    usw.

  4. #4
    Senior Member
    Real Name
    Antoine Monot, Jr.
    Join Date
    Nov 2005
    Location
    Zurich, Switzerland
    Posts
    141
    Liked
    0 times
    Vielen Dank, ich setze die Anregungen gerade um. Wie aber schreibe ich dieses Zeichen #, also einen Anker um?

    Ich habe folgende Rule

    RewriteRule faq.php$ http://www.domain.tld/forum/#anker [L,R=301]
    Ds Ergebnis ist jedoch:

    Danke und lieben Gruss

  5. #5
    Senior Member
    Real Name
    Antoine Monot, Jr.
    Join Date
    Nov 2005
    Location
    Zurich, Switzerland
    Posts
    141
    Liked
    0 times
    Weiss das niemand?

    Ich versuche jetzt die Redirects in meiner vbseocp.php umsetzen, vielleicht ist das ja einfacher. Aber auch das funktioniert nicht. Diese Zeile hier hat überhaupt keine Auswirkungen:

    'forum/installation-updates-(\d+)'=>'forum/faq-installation-updates'

    Was mache ich falsch?

    Lieben Gruss

  6. #6
    Senior Member
    Real Name
    Philipp Herbers
    Join Date
    Sep 2005
    Location
    Meppen, Germany
    Posts
    8,436
    Liked
    0 times
    Hey Antonie,

    ich meld mich

  7. #7
    Senior Member
    Real Name
    Philipp Herbers
    Join Date
    Sep 2005
    Location
    Meppen, Germany
    Posts
    8,436
    Liked
    0 times
    Hey,

    Anker sind kein Bestandteil der eigentlichen URL. Somit ist es leider nicht möglich, sie umzuleiten oder anzupassen

  8. #8
    Senior Member
    Real Name
    Antoine Monot, Jr.
    Join Date
    Nov 2005
    Location
    Zurich, Switzerland
    Posts
    141
    Liked
    0 times
    Quote Originally Posted by Junior View Post
    Weiss das niemand?

    Ich versuche jetzt die Redirects in meiner vbseocp.php umsetzen, vielleicht ist das ja einfacher. Aber auch das funktioniert nicht. Diese Zeile hier hat überhaupt keine Auswirkungen:




    Was mache ich falsch?

    Lieben Gruss
    Hast du dazu auch noch Infos? Oder jemand anderes?

    Quote Originally Posted by Philipp Herbers View Post
    Hey,

    Anker sind kein Bestandteil der eigentlichen URL. Somit ist es leider nicht möglich, sie umzuleiten oder anzupassen
    Klasse, vielen Dank!!

    ... und lieben Gruss

    Junior

  9. #9
    Senior Member
    Real Name
    Philipp Herbers
    Join Date
    Sep 2005
    Location
    Meppen, Germany
    Posts
    8,436
    Liked
    0 times
    Hey,

    probiere o.g. Regel bitte ohne /forum

Similar Threads

  1. 301 rewrites +?vbseourl=
    By n8_115 in forum General Discussion
    Replies: 5
    Last Post: 08-07-2006, 09:00 PM
  2. Problem mit der .htaccess
    By rike1 in forum Deutsch
    Replies: 2
    Last Post: 07-29-2006, 07:19 AM
  3. Probleme mit 2 Erweiterungen
    By Jesse69 in forum Deutsch
    Replies: 13
    Last Post: 04-15-2006, 07:57 AM
  4. 301 homepage
    By Ashley in forum General Discussion
    Replies: 2
    Last Post: 02-15-2006, 06:34 AM
  5. Replies: 0
    Last Post: 12-19-2005, 07:24 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •