This is a discussion on Configure local host for Web Design ??? within the Apache Web Server forums, part of the Web Server and Related Forums category; I have and been using Apache,mysql, and php4 sucessfuly using the root on c:\xxxx\apache\htdocs during installation. ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I have and been using Apache,mysql, and php4 sucessfuly using the root on
c:\xxxx\apache\htdocs during installation. The problem is I want to also use my d:\web_sites\foldername1\site\ d:\web_sites\foldername2\site\ d:\web_sites\foldername3\site\ d:\web_sites\foldername4\site\ d:\web_sites\foldername5\site\ also to use when designing and displaying pages that I am working on in Golive 6. How do I finnish setting up http.conf. I have setup # Alias for all php test sites Alias /test "d:\web_sites/test/test" <Directory "d:\web_sites/test/test"> Options Indexes FollowSymLinks MultiViews ExecCGI AllowOverride All Order allow,deny Allow from all </Directory> for all sites on D: drive But I know I am missing somthing because the pages do not display correctly ( broken links ) but do work perfectly if I copy the site folder to my apache c: root. This is only for local hosting and designing untill uploaded to the main server. Thanks, Jimmy |
|
|||
|
Your name <nobodyhome@here.com> wrote:
> Alias /test "d:\web_sites/test/test" > <Directory "d:\web_sites/test/test"> Do not mix-up backslashes and forward-slashes, use only forward slashes. Davide -- | When in doubt, do what the President does -- guess. | | | |
|
|||
|
> Your name <nobodyhome@here.com> wrote: >> Alias /test "d:\web_sites/test/test" >> <Directory "d:\web_sites/test/test"> > > Do not mix-up backslashes and forward-slashes, use only forward > slashes. > > Davide > I changed it and it did not make much difference,, what other options do I have. |