PHP and .htaccess problem,need help

Hello my friends,

I am starting a new site object.

Please the site script is based on PHP and MYSQL, but when I enable URL-rewriter,it enounter some problem. each category URL only point to the first page of category items list. However When I disable .htaccess, everything for category URL work fine.

http://www.taobao2012.net/oxy/

however

http://www.taobao2012.net/oxy/2/listings.html
http://www.taobao2012.net/oxy/3/listings.html

can also be visited.

I think the problem is from the .htaccess.

Is there anyway I can fix this.

Thanks.

follow this:::
add this in .htaccess file on top…
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^index\.html$ index.php [L]
You want to give this index.html, while you are calling index page/redirecting index page from any other page…