
02-11-2008, 01:00 PM
|
|
SEO
|
|
Join Date: Jan 2005
Posts: 132
|
|
|
Whats wrong with my .htaccess
Hi Guys,
I've setup a site using wordpress and custom wordpress templates.
Everything worked fine.
When I did the mod rewrite using .htacess - it still all works BUT . . .
Now every page, if even it doesn't exist, get redirected to a page that does.
If i type in a url www.mysite.com/co - keep in mind 'co' doesn't exist - it redirects to 'computer programs' - a page that does exist.
I just want it to be normal.
Anyway around this?
This is my .htaccess:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
|