How do I use .htaccess to rewrite this URL?

Hi

I have a site which I want to convert from wordpress site to static html pages.

But after I do the convertsion I want to keep the same urls

How do I in .htaccess rewrite this url:
http://www.mysite.com/this_is_a_page.php to
http://www.mysite.com/this_is_a_page/

any suggestions?

here ya go!
Code:
Options +FollowSymlinks
RewriteEngine on
rewritecond %{http_host} ^[URL]http://www.mysite.com/this_is_a_page.php[/URL] [nc]
rewriterule ^(.*)$ [URL]http://www.mysite.com/this_is_a_page/[/URL]$1 [r=301,nc]
 
Back
Top