Hey I need to remove the ".php" part of some urls, how do I do that? for example I want myPage.php converted to myPage.
I'm not sure if there is a way to do that in htaccess. But you could just create a folder called myPage, put your page in there and rename it index.php, then link to it like /myPage/
Options +FollowSymLinks +Indexes RewriteEngine on RewriteBase / RewriteRule ^([^.]+)$ $1.php [L] But if you use any other script, those won't work. And images will probably be messed up. Adding a / to the URL would probably fix that, unless you have folders. RewriteRule ^([^.]+)/$ $1.php [L]