On 22/07/2010 19:31, Fredric Fredricson wrote:
> Hi all,
> I am working on a small REST-based web service that I write in php.
> I have a single PHP-script and I want Apache to route all requests to a 
specific location and below to my php script.
>
did u try mod_rewrite?
RewriteRule ^(.*)$ /YOURSCRIPTPATH/index.php/$1 [L]

> I expected to be able to tell Apache that "for this path run that php script" 
and not that the script had to be
> accessible via http and all that "handler" business.

You can use locationMatch or .htaccess files:
RewriteCond %{REQUEST_URI} !^(/js|/imgages)
RewriteRule ^(.*)$ /YOURSCRIPT.php/$1 [L]

--
Simone Caruso
IT Consultant
+39 349 65 90 805
p.iva: 03045250838

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
  "   from the digest: users-digest-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to