2011-04-27 39 views
0

全部,通過共享代碼創建手機版網站

我有以下Zend應用程序結構,使用MVC並支持多個模塊(如果添加)。如何擴展此項目以創建整個網站的移動版本?移動站點應支持桌面版本使用的所有模塊,並重復使用盡可能多的控制器和模型代碼。如果用戶通過桌面訪問,則應顯示桌面版本,否則應顯示移動版本。我想用jquerymobile框架來開發移動網站。

-application 
    -configs 
     application.ini 
    -layouts 
     -scripts 
      layout.phtml 
    -modules 
     -default 
      -controllers 
       IndexController.php 
      -models 
      -views 
       -helpers 
       -scripts 
        -index 
         index.phtml 
      Bootstrap.php 
Bootstrap.php 
-documentation 
-include 
-library 
-logs 
-public 
    -design 
     -css 
     -images 
     -js 
    index.php 
    .htaccess 
-scripts 
-tests 
-tmp 

感謝

回答