Zend Framework 2 without Vhost configuration

不问归期 提交于 2019-12-18 12:38:52

问题


I had finished my first web application using Zend Framework 2 and I'm about to put it online. But may web host doesn't allow me to change my vhost configuration! The .htaccess file is allowed.

So my question is: How to set up my ZF2 app with only .htaccess files?


回答1:


Assuming you have a standard ZF2 application based of the skeleton, then try creating a .htaccess file in the root with this in it:

RewriteEngine On

RewriteRule ^\.htaccess$ - [F]
RewriteCond %{REQUEST_URI} =""
RewriteRule ^.*$ /public/index.php [NC,L]

RewriteCond %{REQUEST_URI} !^/public/.*$
RewriteRule ^(.*)$ /public/$1

RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^.*$ - [NC,L]

RewriteRule ^public/.*$ /public/index.php [NC,L]

I haven't tested this, but in theory, this should effectively move the document root to the public directory while keeping it out of the url.



来源:https://stackoverflow.com/questions/12839268/zend-framework-2-without-vhost-configuration

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!