I just moved to php5 yesterday. Everything on my server works except for a Mapping script that uses htaccess.
The htaccess file I'm using contains this:
An example of a image that should work is here:
If you manually put in the page like the htaccess should direct it to, you'll see the image here that works:
So for some reason, the htaccess isn't working since going to php5 and I have no idea why. I get an blank page with just, "No input file specified".
Can anyone give me a hand with this please?
The htaccess file I'm using contains this:
Code:
rewriteEngine on
RewriteBase /
RewriteRule ^\/(\d+)\/World-Map-(.*)\.png$ [URL unfurl="true"]http://www.tweakyourpage.com/Generators/World_Map_Generator/map.php/World-Map-$2_$1.png[/URL] [L]
RewriteRule ^World-Map-(.*)_(.*)\.png$ [URL unfurl="true"]http://www.tweakyourpage.com/Generators/World_Map_Generator/map.php/World-Map-$1_$2.png[/URL] [L]
An example of a image that should work is here:
If you manually put in the page like the htaccess should direct it to, you'll see the image here that works:
So for some reason, the htaccess isn't working since going to php5 and I have no idea why. I get an blank page with just, "No input file specified".
Can anyone give me a hand with this please?