PDA

View Full Version : Catagories do not work


DelMarSurf
08-23-2006, 05:44 PM
I have searched the forum and read the "fixes" post but could not find an answer.

When I click on a catagory from the front page it delivers a 404

Look here http://www.laketahoecoupons.com/

Thanks, DEL

anon
08-23-2006, 08:16 PM
tryusing RewriteBase / in your htaccess file. add it right after RewriteEngine On

DelMarSurf
08-23-2006, 08:30 PM
Content visible to registered users only.

Dude - you always have the fricking answer :D

When I was uploading my ftp froze and I completely overwrote my .htaccess so I just recreated it. Look OK?

# -FrontPage-
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php [QSA,L]
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
AuthName www.laketahoecoupons.com (http://www.laketahoecoupons.com)
AuthUserFile /home/laketaho/public_html/_vti_pvt/service.pwd
AuthGroupFile /home/laketaho/public_html/_vti_pvt/service.grp

anon
08-24-2006, 12:03 AM
Tell me if it's working first hahaha

If it's working, then it's A O.K. with me :p

seovault
08-24-2006, 01:38 AM
anon, I got the same problem and "rewriteBase /" isn't helping :p

Boby
08-25-2006, 09:58 PM
Are you sure URL rewriting is enabled by your hoster?

searchpurple
08-25-2006, 10:04 PM
Content visible to registered users only.
My host had no idea what I meant by "is url rewrite on?"

Boby
08-25-2006, 10:13 PM
If your HTTP web server is Apache (http://httpd.apache.org), there is a module called mod_rewrite (http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html) that needs to be added to rewrite URL's on the fly.
Also, use of htaccess (http://httpd.apache.org/docs/2.0/howto/htaccess.html) files need to be enabled.

Only your hoster can add them. Maybe this is not the problem, most hosters have them, but it wouldn't make any sense to look somewhere else for the problem if this isn't working.

Boby