WordPress sub domain htacess problem

Posted by user260165 on Stack Overflow See other posts from Stack Overflow or by user260165
Published on 2010-04-12T22:18:06Z Indexed on 2010/04/12 22:23 UTC
Read the original article Hit count: 242

Filed under:

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

© Stack Overflow or respective owner

Related posts about Wordpress