(03-06-2011 02:09 AM)gOOvER Wrote: und Du hast doch eine .htacess
Mit den value's drin
jap und das steht dort drin
Code:
Options +FollowSymLinks +ExecCGI
php_value mbstring.detect_order auto
php_value mbstring.internal_encoding UTF-8
php_value mbstring.func_overload 7
php_value session.gc_probability 1
php_value session.gc_divisor 100
php_value session.gc_maxlifetime 1440
<IfModule mod_rewrite.c>
RewriteEngine On
# uncomment the following line, if you are having trouble
# getting no_script_name to work
#RewriteBase /
# Backend Application Rules
RewriteCond %{REQUEST_URI} ^/backend$
RewriteRule ^backend$ backend.php/ [QSA,L,PT,NC]
RewriteCond %{REQUEST_URI} ^/backend/
RewriteRule ^backend/(.*)$ backend.php/$1 [QSA,L,PT,NC]
# WebTV Application Rules
RewriteCond %{REQUEST_URI} ^/webtv$
RewriteRule ^webtv$ webtv.php/ [QSA,L,PT,NC]
RewriteCond %{REQUEST_URI} ^/webtv/
RewriteRule ^webtv/(.*)$ webtv.php/$1 [QSA,L,PT,NC]
# we skip all files with .something
#RewriteCond %{REQUEST_URI} \..+$
#RewriteCond %{REQUEST_URI} !\.html$
#RewriteRule .* - [L]
# rewrite for vimp.swf from ostube
RewriteRule ^vimp.swf http://%{HTTP_HOST}/flash/vimp.swf [QSA,R,L]
# rewrite for flashcomm.php
RewriteRule ^flashcomm.php http://%{HTTP_HOST}/media/flashcomm [QSA,R,L]
# we check if the .html version is here (caching)
RewriteRule ^$ index.html [QSA]
RewriteRule ^([^.]+)$ $1.html [QSA]
RewriteCond %{REQUEST_FILENAME} !-f
# no, so we redirect to our front web controller
RewriteRule ^(.*)$ index.php [QSA,L]
</IfModule>