can some body post the cod to make my .php pages static I got two pages on www.mysite.com one is of course index.php and the other is about.php I've been looking on some codes but I got really confuse what do I put in my .htaccess after this? rewriteEngine On rewriteBase / please help
Im not sure I understand what you want done, so I can't just give it to you. Here is a link that will help you and is worth the short read anyway for future reference. LINK good luck
ok here is the page if you see you'll be able to see it. the reason why I made in PHP instead of html is so I can put a paypal donation tracker. http://www.jordanramos.com if you navigate to the about page you'll see www.jordanramos.com/about.php I would like to make it look like thesitename.com/about.html
man you can sure do flips LOL! try this.. RewriteEngine on RewriteBase / RewriteRule ^index\.php$ index.html RewriteRule ^about\.php$ about.html [T=application/x-httpd-php] Code (markup): This isn't usually my area so its not positive, try it, I'm pretty sure that will do it.
Oh, you may or may not have to add Options +FollowSymLinks depending on your server config. like this.. Options +FollowSymLinks RewriteEngine on RewriteBase / RewriteRule ^index\.php$ index.html RewriteRule ^about\.php$ about.html Code (markup): let us know how it goes
ok, Once you have made the changes in .htaccess you have to change all the links from about.php to about.html The name of the page after the mod rewrite is about.html about.php will still be accesible, but if you want about.html then you have to type that address in, that help?