Hi I am working on a project and had to change all my .html pages to .php since I had to call some php scripts in my pages.
For example on 1 page "macbook.html" I called "text01.php" which is a script that fetches text from a database and displays the text:
<img src="display01.php"/>
Now I have another page named macs.html that had a link like this:
<a href="macbook.html"><img src="product-white-hero2.jpg" alt="MacBook pic"/></a>
<br/>
<a class="nav" href="macbook.html">MacBook</a>
so to be able to call the "text01.php" I had to change the extension to macbook.php and since I had similar situations on almost all my files I changed all my .html to .php.
But now when I open phpmyadmin and browse to the 100% correct location and open the file index.php it shows me the first page with everything over there working but when I click on any other previously working link(before I changed everything to.php" it gives me this error:
Object not found!
The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again.
If you think this is a server error, please contact the webmaster.
Error 404
127.0.0.1
12/28/09 17:21:38
Apache/2.2.13 (Win32) PHP/5.3.0
Can someone please help me?