WordPress sub domain htacess problem
- by user260165
Well i did a wordpress installation with the newer version now avaialble at dere website..
i did my installation at a subdomain : foo.abc.com
the problem came with the permalink which do not work dere bec of the htaccess file.
Can any one suggest me how to do that, i need to have only the category/postname
Till now i am able to do foo.abc.com/index.php/category/postname - i dont want index.php in it.
I have used this htacess file :
disable the rewrite engine
RewriteEngine on
BEGIN WordPress
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
RewriteRule ^post/([0-9]+)?/?([0-9]+)?/?$ /index.php?p=$1&page=$2 [QSA]
END WordPress
Please correct me if possible.
thanks