I'm including pages in a main template, those pages are stored in a subfolder
so my ftp structure:
-index.php
---pages/page1.php
---pages/page2.php
---pages/page3.php
-images/
I'm using mod_rewrite to use friendly URL's
so url.com/page1/ is actually url.com/index.php?page=page1
The problem is, I want to DISALLOW access to search engine bots in the /pages/ folder.
But will it still pick up the includes pages then? (when using
Code: Select all
include()Thanks!