Hello people!
I'm Melissa and i'm starting with webdevelopment. Last week i bought a script and uploaded it to my website, but everytime I run it, I got an 404 error (generate_link is the page not found). Looking for the reason of this issue, I found the .htaccess file but couldn't figure out what is going wrong. Here is it:
Can anyone see what's going wrong with my script? I'm a bit confused
Thanks a million guys!
I'm Melissa and i'm starting with webdevelopment. Last week i bought a script and uploaded it to my website, but everytime I run it, I got an 404 error (generate_link is the page not found). Looking for the reason of this issue, I found the .htaccess file but couldn't figure out what is going wrong. Here is it:
Code:
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^([^.]+)\.html$ $1.php [L]
RewriteRule ^dl/(.*)$ download.php?id=$1&t=$2 [NC]
RewriteRule ^generate_link /modules/generate_link.php [NC]
RewriteRule ^rs/([^/]+)/([^/]+) /modules/rsdownload.php?rsid=$1&rsfile=$2 [NC]
RewriteRule ^sc/([^/]+) /modules/sharecash.php?id=$1 [NC]
RewriteRule ^mu/([^/]+) /modules/mudownload.php?muid=$1 [NC]
RewriteRule ^hf/([^/]+)/([^/]+)/([^/]+) /modules/hfdownload.php?hfid1=$1&hfid2=$2&hfname=$3 [NC]
RewriteRule ^yt/([^/]+) /modules/ytdownload.php?vidid=$1&idm=1 [NC]
RewriteRule ^nl/([^/]+) /modules/nldownload.php?nlid=$1 [NC]
RewriteRule ^es/([^/]+) /modules/esdownload.php?esid=$1 [NC]
RewriteRule ^ul/([^/]+) /modules/uldownload.php?ulid=$1 [NC]
RewriteRule ^df/([^/]+) /modules/dfdownload.php?dfid=$1 [NC]
RewriteRule ^ms/([^/]+) /modules/msdownload.php?msid=$1 [NC]
RewriteRule ^mv/([^/]+) /modules/mvdownload.php?mvid=$1&idm=1 [NC]
RewriteRule ^mp/([^/]+) /modules/mpdownload.php?mpid=$1&idm=1 [NC]
RewriteRule ^idm/rs/([^/]+)/([^/]+) /modules/rsdownload.php?rsid=$1&rsfile=$2&idm=1 [NC]
RewriteRule ^idm/mu/([^/]+) /modules/mudownload.php?muid=$1&idm=1 [NC]
RewriteRule ^idm/hf/([^/]+)/([^/]+)/([^/]+) /modules/hfdownload.php?hfid1=$1&hfid2=$2&hfname=$3&idm=1 [NC]
RewriteRule ^idm/yt/([^/]+) /modules/ytdownload.php?vidid=$1&idm=1 [NC]
RewriteRule ^idm/sc/([^/]+) /modules/sharecash.php?id=$1 [NC]
RewriteRule ^idm/nl/([^/]+) /modules/nldownload.php?nlid=$1&idm=1 [NC]
RewriteRule ^idm/es/([^/]+) /modules/esdownload.php?esid=$1&idm=1 [NC]
RewriteRule ^idm/ul/([^/]+) /modules/uldownload.php?ulid=$1&idm=1 [NC]
RewriteRule ^idm/df/([^/]+) /modules/dfdownload.php?dfid=$1&idm=1 [NC]
RewriteRule ^idm/ms/([^/]+) /modules/msdownload.php?msid=$1&idm=1 [NC]
RewriteRule ^idm/mv/([^/]+) /modules/mvdownload.php?mvid=$1&idm=1 [NC]
RewriteRule ^idm/mp/([^/]+) /modules/mpdownload.php?mpid=$1&idm=1 [NC]
ExpiresActive On
ExpiresByType image/gif A2592000
Can anyone see what's going wrong with my script? I'm a bit confused
Thanks a million guys!