Die htaccess sieht folgendermaßen aus:
#RewriteEngine On
#Options +FollowSymLinks
#RewriteBase /
#RewriteRule ^typo3$ - [L]
#RewriteRule ^typo3/.*$ - [L]
#RewriteRule ^(typo3|banner|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/ - [L]
#RewriteCond %{REQUEST_FILENAME} !-f
#RewriteCond %{REQUEST_FILENAME} !-d
#RewriteCond %{REQUEST_FILENAME} !-l
#RewriteRule (\.html|/)$ index.php
#RewriteRule .* index.php
RewriteEngine On
RewriteRule ^/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)$ - [L]
RewriteRule ^/(typo3|typo3temp|typo3conf|t3lib|tslib|fileadmin|uploads|showpic\.php)/.*$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php
Ich habe wie gesagt beide varianten ausprobiert weil ich überall mal was anderes gelesen habe. |