Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mod Rewrite problem w/ PHP5

Status
Not open for further replies.

rye8261

Technical User
Jul 6, 2003
359
0
0
US
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:
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?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top