• 0

Error Log


Question

Hi

I am getting errors in cpanel wich im trying to get rid for week now,... whatever i do there here.

[Sun Sep 05 04:01:29 2010] [error] [client IP] File does not exist: /home/public_html/contact-us, referer: http://www.computerfields.com/contact-us/
[Sun Sep 05 04:01:23 2010] [error] [client IP] File does not exist: /home/public_html/our-products, referer: http://www.computerfields.com/our-products/
[Sun Sep 05 04:01:15 2010] [error] [client IP] File does not exist: /home/public_html/our-services, referer: http://www.computerfields.com/our-services/
[Sun Sep 05 04:01:02 2010] [error] [client IP] File does not exist: /home/public_html/about-us, referer: http://www.computerfields.com/about-us/

in htacces i have this:

RewriteRule ^home$ index.php [L]

RewriteRule ^about-us/$ aboutus.php [L]
RewriteRule ^about-us$ aboutus.php [L]

RewriteRule ^more-about/$ about.html [L]
RewriteRule ^more-about$ about.html [L]

RewriteRule ^our-services/$ services.php [L]
RewriteRule ^our-services$ services.php [L]

RewriteRule ^our-products/$ products.php [L]
RewriteRule ^our-products$ products.php [L]

RewriteRule ^contact-us/$ contactus.php [L]
RewriteRule ^contact-us$ contactus.php [L]

RewriteRule ^terms/$ terms.php [L]
RewriteRule ^terms$ terms.php [L]

RewriteRule ^price-list/$ pricelist.html [L]
RewriteRule ^price-list$ pricelist.html [L]

So i can access pages with / on the end or without.

I did try to disable multiviews option (i put -MultiViews on top beside Options) and its still the same,...

May i please get some help on this?

Thank you in advance!

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Adding

RewriteEngine on

above all your .htaccess code would fix it.

BTW, I'm not too sure but if I remember well, you could replace this

RewriteRule ^price-list/$ pricelist.html [L]
RewriteRule ^price-list$ pricelist.html [L]

to this:

RewriteRule ^price-list/?$ pricelist.html [L] 

It should do the job. I've added ? after / and before $

Link to comment
Share on other sites

  • 0

Tnx, i did what u suggested and i will leave it , i guess less lines in htacces now ;)

but i am still receiving errors in cpanel,....

i just realized that i didnt CP whole htacces, so i will do it now,... there might be something else making those errors

Options +FollowSymlinks 
RewriteEngine on

# Turn on Expires and set default to 0
ExpiresActive On
ExpiresDefault A0


# Set up caching on media files for 1 year (forever?)
<FilesMatch "\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav)$">
ExpiresDefault A29030400
Header append Cache-Control "public"
</FilesMatch>

# Set up caching on media files for 1 week
<FilesMatch "\.(gif|jpg|jpeg|png|swf)$">
ExpiresDefault A604800
Header append Cache-Control "public"
</FilesMatch>

# Set up 2 Hour caching on commonly updated files
<FilesMatch "\.(xml|txt|html|js|css)$">
ExpiresDefault A7200
Header append Cache-Control "proxy-revalidate"
</FilesMatch>

# Force no caching for dynamic files
<FilesMatch "\.(php|cgi|pl|htm)$">
ExpiresActive Off
Header set Cache-Control "private, no-cache, no-store, proxy-revalidate, no-transform"
Header set Pragma "no-cache"
</FilesMatch>

php_value output_handler ob_gzhandler

ErrorDocument 404 /404.html
ErrorDocument 401 /401.html


<filesMatch ".js$">
AddHandler application/x-httpd-php .js
</filesMatch>

RewriteRule ^(([^/]+/)*[^./]+)$ http://www.computerfields.com/$1/ [R=301,L]

RewriteRule ^home$ index.php [L]

RewriteRule ^about-us/?$ aboutus.php [NC,L]

RewriteRule ^more-about/?$ about.html [NC,L]

RewriteRule ^our-services/?$ services.php [NC,L]

RewriteRule ^our-products/?$ products.php [NC,L]

RewriteRule ^contact-us/?$ contactus.php [NC,L]

RewriteRule ^terms/?$ terms.php [NC,L]

RewriteRule ^price-list/?$ pricelist.html [NC,L]

Link to comment
Share on other sites

  • 0

<div class="bottom"><link href="style.css" rel="stylesheet" type="text/css" />

You have that section near the bottom, would think that is causing the issues, change to /style.css or remove as it already exists at the top of the page.

Link to comment
Share on other sites

  • 0

<div class="bottom"><link href="style.css" rel="stylesheet" type="text/css" />

You have that section near the bottom, would think that is causing the issues, change to /style.css or remove as it already exists at the top of the page.

Thank you soooooooooooooo much!!!!!!!!!!!

That line was actually in footer file, added / and BOOOOOOOM, worked!

Thank you ALL for help!

I appreciate this very much!

Link to comment
Share on other sites

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.