zend 框架 +核心 PHP 集成
我必须在 zend 框架中转换一个站点。网站很大,我无法在 zend 中一次转换该网站,大约需要 6 个月的时间。我是否可以逐个模块(部分)更新它并继续在实时站点中上传,以便我站点的某些模块将在 zend 上运行,而某些模块将在核心 php 上运行。我可以在 zend 框架中对 url 进行任何设置吗,以便我的 url 上的两个都可以工作。
I have to convert a site in zend framework. Site is big I can't convert the site at a time in zend It will take abt 6 months. Is it possible that I update it module by module (parts) and keep on uploading in live site so some module of my site will run on zend and some on core php. Can I do any setting for url in zend framework so both on my url can work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
强烈建议不要部分迁移到一个/另一个框架。除非您真的(!)需要,否则不要弄乱实时站点(尤其是大型站点)。在将任何内容发布到野外之前,您最好在当地办公室建立一个测试/迁移站点,并进行完整的迁移和彻底的测试。
如果您确实想这样做,您应该开始研究 .htaccess 条件请求重写,以将请求重定向到 zend 或您专有的 PHP 应用程序。
干杯,
哈吉
partially migrating onto a/another framework is strongly discouraged. Don't mess with live-sites (especially not big ones) unless you really(!) need to. You should better set up a testing/migration site in your local office and do a full migration, and thorough testing, before you release anything into the wild.
If you really want to do this you should start looking into .htaccess conditional request rewriting to redirect the request either to zend or to your proprietary PHP application.
Cheers,
haggi