使用.htaccess文件

I have written the following line of code in the .htaccess file..

Options +FollowSymLinks
RewriteEngine on
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)/$ $1.php [L] 

RewriteRule ^honeymoon$ honeymoon.php [L] 

to redirect http://localhost/site1/honeymoon.php to http://localhost/site1/honeymoon/

but am getting the error message from my browser..

Object not found!

The requested URL was not found on this server. The link on the referring page seems to be wrong or outdated. Please inform the author of that page about the error.

If you think this is a server error, please contact the webmaster.
Error 404
localhost
Apache/2.4.4 (Win32) OpenSSL/0.9.8y PHP/5.4.16 

What is the problem. Please some one help me.