Well, it depends..
If your php pages had the php extension but no actual php code (normally between tags like: <? ?>, but sometimes with <% %>) then you're in luck and you can just change the page extensions.
However, any actually php code in those pages was being used to deliver the html content. You would have to understand what the code was doing and know whether or not it could be satisfactorily replaced with static html.
Chances are the pages weren't 'php' for nothing, and some decisions will have to be made - like whether or not you can do without the dynamically created information that the php code was making for you.
If this is your own site - here's how you can experiment:
Copy some of the php pages to *.html Then try browsing the html pages.
If you're a web designer and this is a client's site, partner with a server-side coder or be prepared for disaster.
|