Sorry for noob question, can\'t understand from what I should search.
I\'m making a site with that page product.php?id=777 I\'d like it to be pro
product.php?id=777
pro
Instead of using mod_rewrite you can also use following in your .htaccess:
DefaultType application/x-httpd-php
And just name your script product on the server (without .php file extension).
product
So you can invoke it directly and would receive any appended string as $_SERVER["PATH_INFO"]
$_SERVER["PATH_INFO"]