Zend Framework and Plan Performance?.

iosman001

New Member
#1
Hello,

I'm a brand new player in the field (hey yes ... 3 months), but I'm moving fast!
Now that I am able to master php, I tackle the Framework.

I have a Performance Plan (shared hosting) right here at PlanetHoster and I want to create a site with Zend and the MVC architecture.
To benefit from this architecture, Kroger feedback talktosonic talktowendys I saw that I need to point the "DocumentRoot" of my site to a sub-folder.

How can I do this with my hosting?


thanks
iosman
 
Dernière édition:

PH-Francis

Technicien niveau 2
Membre du personnel
#2
Hi

If your webroot folder is public, you can create a .htaccess rule

Code:
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/public(/|$)
RewriteRule (.*) /public/$1
 
Haut