I have removed index.php from my application URL as presented around the web. But I have a weird problem afterwards.
I can access the website using browser like this... http://www.oakquotes.com/quotes/author/etc-etc (notice the lack of index.php) but when I try to access the same URL using a crawler then I get forbidden 403 http error.
Here is the robots.txt file:
User-agent: *
Allow:/quotes/topic
Allow:/quotes/author
Disallow:
Sitemap: http://www.oakquotes.com/Sitemap.xml
Sitemap: http://www.oakquotes.com/author_sitemap.xml
Sitemap: http://www.oakquotes.com/topic_sitemap.xml
I think the culprit is the .htaccess rule that I have written to remove index.php from the URL. Here is the code for htaccess:
<IfModule mod_rewrite.c>
# For security reasons, Option followsymlinks cannot be overridden.
# Options +FollowSymlinks
Options +SymLinksIfOwnerMatch
RewriteEngine On
RewriteBase /
RewriteCond $1 !^(index\.php|images|robots\.txt|Sitemap\.xml|topic_sitemap\.xml|author_sitemap\.xml|search\.html|style|js|system|application|quotes/authors|quotes/topic|application/controllers|application/views)
RewriteRule ^(.*)$ ./index.php/$1 [L]
</IfModule>
Am I missing a step? Please help me in this regard. Thanks.