Force download file in php |
[eluser]Unknown[/eluser]
Hi, I want to restrict access to specific folder if some one copies and paste download file link or folder in browser. For that i have modified my htaccess file and added following lines of codes in that RewriteEngine On RewriteCond %{REQUEST_URI} \.(doc|zip|pdf)$ [NC] RewriteRule ^(.*)$ /download-pdf.php?filename=$1 [L] Beside this i have placed plenty of codes searcher from google to make it accessible when accessed from my domainsite.com http://stackoverflow.com/questions/1962 ... row-script http://stackoverflow.com/questions/1365 ... rowser-url and searched almost every site. But restricting access to my files will not allow me to access it through my site also. The only solution i came across is to force download the restricted file if accessed through my site. For that i have made forcedownload.php file and reading the contents of file in that. But the problem is that how to add condition in htaccess to go to download page if accessed through my site. Any help?? |
Messages In This Thread |
Force download file in php - by El Forum - 10-28-2013, 11:05 AM
Force download file in php - by El Forum - 10-30-2013, 03:29 AM
Force download file in php - by El Forum - 10-30-2013, 05:10 AM
|