I want put some files in the folder wordpress/crontab/ make some cron job. So I need all the files under wordpress/crontab/ can run well and not pointed into a 404 page. Here is the Rewrite rule in wordpress .htaccess, how to add some line that allow folder wordpress/crontab/ out off the rule? Thanks.
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /wordpress/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /wordpress/index.php [L]
</IfModule>
# END WordPress
text.phpinwordpress/crontab/, then typelocalhost/wordpress/crontab/text.phpit return a404 pageI do not know why. so I thinkRewrite rulelimit the link. – cj333 Apr 21 '11 at 13:51RewriteCond %{REQUEST_FILENAME} !-fshould prevent rewriting if you're accessing a file that exists physically in the path. – kb. Apr 21 '11 at 14:04