Hi, i'm trying with this sistem because i've since i've implemented my new portal that use this style of url index.php?pagina=XXXXX i've lost my pagerank because of that, before it was 5 now it's 1 or 0...
i've tried but with this .htaccess:
Options +FollowSymlinks
RewriteEngine on
RewriteRule ^(.*) index.php?pagina=$1
and this php:
<?php
$variable = $_GET['pagina'];
echo $variable;
?>
going to this url:
http://www.redr2k.com/paginas/testi always get 'index.php' and it should be 'test'
I hope you can hel me out.
Thanks.