I've been struggling with weird redirect issues where download links to pdf's go to the home page, and paypal buttons redirect or hang.
Why would a paypal button redirect or hang on a WordPress page? Why would a link to a downloadable pdf redirect to the home page?
I am at a loss. I've been searching forums and can't find anyone having a similar problem.
I've looked at the .htaccess... I don't think there is anything strange in it but maybe I just don't know how to read it.
Can anyone help?!!??
Here's the .htaccess text:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
#----- START DAP -----
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} (.*)/wp-content/uploads/(.*)
RewriteCond %{REQUEST_FILENAME} !(.*)(\.php|\.css|\.js|\.jpg|\.gif|\.png|\.txt)$
RewriteRule (.*) /dap/client/website/dapclient.php?dapref=%{REQUEST_URI}&plug=wp&%{QUERY_STRING} [L]
#----- END DAP -----
</IfModule>
# END WordPress
RewriteCond %{HTTP_HOST} ^handmaderesults.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.handmaderesults.com$
RewriteRule ^signmeup\/3days\/?$ "http\:\/\/www\.handmaderesults\.com\/signmeup\/" [R=301,L]
RewriteCond %{HTTP_HOST} ^handmaderesults.com$
RewriteRule ^(.*)$ "http\:\/\/www\.handmaderesults\.com\/$1" [R=301,L]
RewriteCond %{HTTP_HOST} ^handmaderesults.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.handmaderesults.com$
RewriteRule ^memberlessons\/1\/lesson01\-bonus\-brainstorming\-cheat\-sheet\.pdf$ "http\:\/\/www\.handmaderesults\.com\/bonus\/bonus01\/lesson01\-bonus\-brainstorming\-cheat\-sheet\.pdf" [R=301,L]
RewriteCond %{HTTP_HOST} ^.*$
RewriteRule ^memberlessons\/lesson01\-bonus\-brainstorming\-cheat\-sheet\.pdf$ "http\:\/\/www\.handmaderesults\.com\/bonus\/bonus01\/lesson01\-bonus\-brainstorming\-cheat\-sheet\.pdf" [R=301,L]