Php framework için Symfony öğrenmeye başladım ve httpd.conf yapılandırma ile sorunum var.
Birincisi, ben xampplite benim windows c yüklü: \ xampplite \
and then I created a symfony project (as described on getting started guide) c:\xampplite\htdocs\symfonytest\
Everything works fine when I tried to access http://localhost/symfonytest/web/ (all icons and text are displayed pretty well)
Şimdi httpd.conf yapılandırmak için var ve ben bu gibi yazın:
<VirtualHost 127.0.0.1/symfonytest>
DocumentRoot "c:\xampplite\htdocs\symfonytest\web"
DirectoryIndex index.php
<Directory "c:\xampplite\htdocs\symfonytest\web">
AllowOverride All
Allow from All
</Directory>
Alias /sf c:\xampplite\htdocs\symfonytest\web\sf
<Directory "c:\xampplite\htdocs\symfonytest\web\sf">
AllowOverride All
Allow from All
</Directory>
I http://127.0.0.1/symfonytest/ hala benim c dizin listesi görüntülendiğinde yazdığınızda Ama ... hiç bir etkisi vardır: \ xampplite \ htdocs \ symfonytest \
Bu nasıl httpd.conf sorunu çözmek için?
Thank you!