Visa ett inlägg
Oläst 2010-01-23, 15:31 #10
Dimme Dimme är inte uppkopplad
Flitig postare
 
Reg.datum: Mar 2008
Inlägg: 397
Dimme Dimme är inte uppkopplad
Flitig postare
 
Reg.datum: Mar 2008
Inlägg: 397
Allt du behöver är detta som fixar både "/" och alla undersidor:

.htaccess
Kod:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
index.php
Kod:
<?php
header( "HTTP/1.1 301 Moved Permanently" );
header( "Status: 301 Moved Permanently" );
header( "Location: http://www.ny-url.se".$_SERVER['REQUEST_URI'] );
exit(0);
?>
Dimme är inte uppkopplad   Svara med citatSvara med citat