Hello,
I have installed the mydownloads plugin with any issues.
When I added the following to my .htaccess file to remove those pesky .php extensions from my url's i'm getting a blank page now.
I have installed the mydownloads plugin with any issues.
When I added the following to my .htaccess file to remove those pesky .php extensions from my url's i'm getting a blank page now.
Code:
RewriteBase /
# remove .php; use THE_REQUEST to prevent infinite loops
RewriteCond %{THE_REQUEST} ^GET\ (.*)\.php\ HTTP
RewriteRule (.*)\.php$ $1 [R=301]
# remove index
RewriteRule (.*)/index$ $1/ [R=301]
# remove slash if not directory
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} /$
RewriteRule (.*)/ $1 [R=301]
# add .php to access file, but don't redirect
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteCond %{REQUEST_URI} !/$
RewriteRule (.*) $1\.php [L]