Will most shared hosting already load the mod_rewrite? If the mod_rewrite was not turned on in most shared hosting, just to make my system portable, I can use the real redirect to achieve what I want.
As a matter of fact, all I want to do is a shortcut redirect.
http://www.mysite.com/place1 redirect to http://www.mysite.com/... (some page about place 1)
http://www.mysite.com/place2 redirect to http://www.mysite.com/... (some page about place 2)
There is another approach I can achieve this. Instead of using mod_redirect, I can just create the folder/file, place1/index.php, place2/index.php, ... and use header("Location "); in these index.php file to do the real redirect.
All these folder/page I can create/manage automatically through a database back end php script,
Will that be good for performance too? Or mod_rewrite is just fine and most shared hosting would allow it, I should just use mod_rewrite to keep everything simple.