Guys, im doing testing for my PLG script. Tested on shared hosting + cPanel its working fine.
But the problem now is when im install apache + php5 without cpanel on my vps, site is working fine but not fully function. I can generate the link but cannot download it, error not found the file.
My script need to rewrite this:
I create .htaccess and put the code but still no luck. Should i put this code at other place at httpd.conf or etc etc?
But the problem now is when im install apache + php5 without cpanel on my vps, site is working fine but not fully function. I can generate the link but cannot download it, error not found the file.
My script need to rewrite this:
Code:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^static/(.*) index.php?q=$1
I create .htaccess and put the code but still no luck. Should i put this code at other place at httpd.conf or etc etc?