From: Why Tea on 12 Apr 2010 19:16 What is the equivalent of Windows server IIS virtual paths in Linux? In Windows server, these virtual paths show up in an ftp session when you do a "dir". The reason for the question is we need to port some Windows apps to Linux and virtual paths have been used quite heavily in the code. Would appreciate any suggestions. /Why Tea
From: The Natural Philosopher on 12 Apr 2010 21:36 Why Tea wrote: > What is the equivalent of Windows server IIS virtual paths in Linux? > In Windows server, these virtual paths show up in an ftp session when > you do a "dir". > > The reason for the question is we need to port some Windows apps to > Linux and virtual paths have been used quite heavily in the code. > Would appreciate any suggestions. > > /Why Tea A brief google reveals that these are pseudo files and directiories that serve database content., You can do pseudo files using links symbolic or otherwise, that will show up in things like directory listings, but if you want to access database content from an app, its best to usee e.g. MySql and write a similar API shim that will mimic the behaviour of a virtual path.
From: Joe Beanfish on 13 Apr 2010 13:19 On 04/12/10 21:36, The Natural Philosopher wrote: > Why Tea wrote: >> What is the equivalent of Windows server IIS virtual paths in Linux? >> In Windows server, these virtual paths show up in an ftp session when >> you do a "dir". >> >> The reason for the question is we need to port some Windows apps to >> Linux and virtual paths have been used quite heavily in the code. >> Would appreciate any suggestions. >> >> /Why Tea > > A brief google reveals that these are pseudo files and directiories that > serve database content., > > You can do pseudo files using links symbolic or otherwise, that will > show up in things like directory listings, but if you want to access > database content from an app, its best to usee e.g. MySql and write a > similar API shim that will mimic the behaviour of a virtual path. See also Apache directives "Alias" and "ScriptAlias".
|
Pages: 1 Prev: strange behaviour..can any one help? Next: Script Script |