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
Dier erste Zeile des CodesCode: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 ###
wird zuCode:Redirect permanent /forum/typo3-mitglied http://www.typo3forum.net/forum/members
Folgendes habe ich ausprobiert, hat aber nicht geholfen:HTML Code:http://www.typo3forum.net/forum/members/daniel.html?vbseourl=typo3-mitglied/daniel.html
Vielen Dank für die Hilfe!Code:RewriteRule ^forum/typo3-mitglied$ http://www.typo3forum.net/forum/members [L,R=301]
Lieben Gruss
Junior



LinkBack URL
About LinkBacks





Reply With Quote

