Hallo
eine Frage zu Realurl und Redirect.
Ist es möglich, das beim Aufruf von http://www.meinedomain.de/index.php auf http://www.meinedomain.de (ohne index.php) weitergeleitet wird?
Folgendes steht in der .htaccess:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www.meinedomain.de
RewriteRule (.*) http://www.meinedomain.de/$1 [R=301,L]
#Redirect permanent /index.php http://www.meinedomain.de/
RewriteEngine On
RewriteRule ^(typo3|t3lib|tslib|fileadmin|typo3conf|typo3temp|uploads|showpic\.php|favicon\.ico)/ - [L]
RewriteRule ^typo3$ typo3/index_re.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php [L]
Action application/x-httpd-php /cgi-sys/php-fcgi-starter.fcgi
AddType application/x-httpd-php .php3 .php4
Action application/x-httpd-php5 /cgi-sys/php5-fcgi-starter.fcgi
AddType application/x-httpd-php5 .php .php5