#_HPg2Z${#B+vld]>@FhFTW +35--J=ځ"O1^f+P>`E>R?G~n Lo2>Z<ff$SF t̘r퇎M|OE3IF{+%J[?@B7hs58xhVYV> 6{r`3+ܐqXNo#Ϝ6Ϸ# JvPc>2tWcqܧ'cCEEJ46+v)5- x+ _Xwguò#dž"tE&_9ѻ`;kuy8.?;sW4hi$g۫|>d`xW+!9<LwJ@&?|"h9#b{t8-_R=K#8,C=EXޱv2Ra"_5fdMIN%">"21E9+6s2v>*\WLРB-ΎgKVwڵV*E5w ʒ:QŎ'p r +| f0kM,g4tN6fvcXAPIݍw?yq[^erj1.yY2.(h5WaVV*H>\E4JHjVtįlOi2ma| \__%PS3F-vsRgtT}-~/1+4!j36.,W myv_3QS_\Ump~.X48g ', 꼫,ڴEՁ_'F,9aUi;B5RRZ c+6uYZAb #,\ToyOKpwPO: nY\ӭVgXy7-mmԾ8&UU_(i25~JXd JcV"_ա,J CDl?UX݉h_娾 C&i^G)r.{}ZJ+&?J^ $ tH$Vh _mE:ؽQ@D? ~y%mŦ|h耭7Q窬ޞʥ_MfhA80BA^ikUBVp˘S J_!7u^Ju20|ߨ Ig%!33־%hpZ4=Q]U/R7XdA>S$u%6xM@9pN)[Z<& ˟]S˄UAEAsê ^A/&{&҃SMEOI#1%ӈ-vKvg矟9LS^{ޥX,1;<}+DI|X?k4(fmnrN G 7B:'+GUJ5R׌3AhNԸӴ74?y'GK"Ih*\L n/eË6wa2^bDW eϿBd%<." N!/ȅ9kM) ƆWZgdFݎz&FYwSslcpd#;.D6Dϟ yq;ܡ : t4m.|,HZHͿZsa Y:ݸ{VW/0&Hi'Щ5Z̩Ά c-(u%V ky-VQE< 9;['nMeEGk&b/V*uu"[ ^2LJϜI&}T,wig_Xd`v7;R{%K( iXtf"e\/501<Ѷԁ #`_aiCچ$QA:=KT !0MiRD%3$IgcR}l$#WK*y%㋭kˮ- KBek80. HMtaE .#RB#4O6&K +#f;),-iA‘޿e͢{&ʫ4XN2eǗ3Uo RyO$lhNq5JJv7;R{%K( I/ew  1CO w.fs subdirectory in the myapp\ directory. Rename this newly-created subdirectory to htdocs.

This new htdocs directory will be the main working directory for your Zend Framework project.
  • Within the myapp\ directory, create a new conf\ subdirectory.

    1. Within the new conf\ subdirectory, use your text editor to create and populate a file named ttpd-prefix.conf with the following content:

      Alias /myapp/ "C:/xampp/apps/myapp/htdocs/public/"
      Alias /myapp "C:/xampp/apps/myapp/htdocs/public"
      Include "C:/xampp/apps/myapp/conf/httpd-app.conf"
    2. Within the conf\ subdirectory, also create and populate a file named httpd-app.conf with the following content:

      <Directory C:/xampp/apps/myapp/htdocs/public>
         Options +FollowSymLinks
         AllowOverride All
         Require all granted
      </Directory>
  • Edit the httpd-xampp.conf file in the apache\conf\extra\ subdirectory of your XAMPP installation directory and add the following line at the end to include the httpd-prefix.conf file created earlier.

    Include "C:/xampp/apps/myapp/conf/httpd-prefix.conf"
    Remember to update the above file and directory paths so that they’re valid for your system.
  • Launch a new Windows command shell using the "Shell" button in the XAMPP control panel.

  • Within the command shell, change to the myapp\htdocs\ directory and run the following commands to create a new stub project.

    bin\zf.bat create project .
  • Check that you have a directory structure like this:

    image1
  • Restart the Apache server using the XAMPP control panel.

  • You should be able to access the Zend Framework skeleton application by browsing to http://localhost/myapp. Here’s what the default welcome page looks like:

    image2

    You can now begin developing your Zend Framework application by modifying the skeleton application code. For more information, refer to the Zend Framework documentation.