XML sitemap 404 page and .htaccess issue (phpvibe)



I figure out a xml sitemap for my website. In .htaccess, if I comment (RewriteRule ^(.*)/?$ index.php?rp=$1 [L]) line then all xml sitemap works fine, but my website pages doesn't work.


Please check this links....


http://ift.tt/1vyIEc9 -- Working


http://ift.tt/YPhYsX --- working


http://ift.tt/1vyIDoC --- Not working


My .htaccess file....



<IfModule mod_rewrite.c>

RewriteEngine on

RewriteBase /test/

RewriteRule ^embed/([^/]*)/$ /embed.php?id=$1 [L]

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

**RewriteRule ^(.*)/?$ index.php?rp=$1 [L]**

**RewriteRule ^sitemaps.xml sitemap.php**

**RewriteRule ^sitemap_(.*).xml?$ sitemap.php?page=$1 [L]**

</IfModule>


I think it's a .htaccess issue, I am using phpvibe script. I don't have knowledge with .htaccess, kindly help me to figure this issue.


Thank you.


2 comments:

  1. here is the solution:

    http://findoutanswer.com/2756/htaccess-issue-in-phpvibe-getting-xml-sitemap-404-page

    ReplyDelete