Restrict Content for only Contributors via .htaccess

You can create a custom page template for downloads and use something similar to the following: if (current_user_can(‘contributor’)) { echo “<h2>Download Page</h2>”; } else { echo ‘You do not have access to this page”; } You would need additional code to show the file you are offering for download. Alternatively you could set another cookie … Read more

Redirect not working

Try this: RewriteRule ^(freebooks)$ $1/index.php?p=5&min_price=0&max_price=0 [NC,L] or just RewriteRule ^freebooks$ freebooks/index.php?p=5&min_price=0&max_price=0 [NC,L]