Hello .. my question is simple and i think its done with .htacess .. is /popular?f=unread the same /popular.php?f=unread ? if it is how can i make it like this ? Thank you .
I think you might want to look into CodeIgniter, it's a php framework that allows you to pass variables without naming scripts, as well as other things. http://codeigniter.com/ But to answer your question /popular?f=unread is not the same as /popular.php?f=unread
Yes you can do this with a simple mod_rewrite rule which you can place in your .htaccess file. RewriteEngine On RewriteRule ^popular$ popular.php [L] This will only redirect popular to popular.php. You can do a more general rule but it gets more complicated because you probably don't want to redirect everything in this way.