On 07/22/2010 10:50 PM, Simone Caruso wrote:
Thank you, that was what I needed. After I outsmarted SELinux it worked fine.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]
/Fredric
> 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]
<<attachment: Fredric_Fredricson.vcf>>
--------------------------------------------------------------------- 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