Alternative
you can generate the example above by using Yaf Code Generator: https://github.com/laruence/php-yaf/tree/master/tools/cgПример #1 Классический пример каталога для приложения
- index.php
- .htaccess
+ conf
  |- application.ini //Файл настроек
- application/
  - Bootstrap.php
  + controllers
     - Index.php //Контроллер по умолчанию
  + views
     |+ index
        - index.phtml //Шаблон вывода для действия по умолчанию
  + modules
  - library
  - models
  - plugins
Пример #2 Введение
Файл index.php — единственная точка входа в приложение, все запросы необходимо направлять через этот файл (например, через файл .htaccess в связке Apache + php_mod)
<?php
define("APPLICATION_PATH",  dirname(__FILE__));
$app  = new Yaf_Application(APPLICATION_PATH . "/conf/application.ini");
$app->bootstrap() // Выполнение методов, которые определили в файле Bootstrap.php
    ->run()
;
?>Пример #3 Правила перенаправления
#для apache (.htaccess)
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* index.php
#для nginx
server {
  listen ****;
  server_name  domain.com;
  root   document_root;
  index  index.php index.html index.htm;
  if (!-e $request_filename) {
    rewrite ^/(.*)  /index.php$1 last;
  }
}
#для lighttpd
$HTTP["host"] =~ "(www.)?domain.com$" {
  url.rewrite = (
     "^/(.+)/?$"  => "/index.php/$1",
  )
}
Пример #4 Конфигурация приложения
[yaf] ;APPLICATION_PATH должна быть определена в index.php application.directory=APPLICATION_PATH "/application/" ;product секция должна наследовать yaf [product:yaf] foo=bar
Пример #5 Контроллер по умолчанию
<?php
class IndexController extends Yaf_Controller_Abstract
{
   /* действие по умолчанию */
   public function indexAction()
   {
       $this->_view->word = "hello world";
       // или
       // $this->getView()->word = "hello world";
   }
}
?>Пример #6 Шаблон вывода по умолчанию
<html>
    <head>
        <title>Привет, мир!</title>
    </head>
    <body>
        <?php echo $word; ?>
    </body>
</html>Пример #7 Запуск приложения
Вывод приведённого примера будет похож на:
<html>
    <head>
        <title>Hello World</title>
    </head>
    <body>
       Привет, Мир!
    </body>
</html>
Замечание:
Приведённый пример можно также создать через генератор кода Yaf, который можно найти здесь yaf@github.
Alternative
you can generate the example above by using Yaf Code Generator: https://github.com/laruence/php-yaf/tree/master/tools/cgYAF based on the actual case:Hooks、Event、Modules、Plugins、Multiple templates、Multiple languages、SQL Centralized Management...
Support Electric Business Platform、OA、ERP、IaaS、PaaS、SaaS、Blog、Cms...
Common features required by any platform: User、Acl、Menu...
https://github.com/letwang/HookPHPPHP8 Yaf3.3.3 按照官网配置 导致Nginx死循环:
rewrite or internal redirection cycle while processing "/index.phpindex.phpindex.......
解决:
Example #3 Rewrite rule
#for nginx
server {
  listen ****;
  server_name  domain.com;
  root   document_root;
  index  index.php index.html index.htm;
  if (!-e $request_filename) {
    rewrite ^/(.*)  /index.php?$1 last;
  }
}
唯一的变化,是 多出1个 ?问号nginx重写不知为什么死循环
rewrite ^/(.*)  /index.php/$1 last;
/index.php/index.php/index.php/index.php/index.php/index.php/index.php/index.php/Index
后来我改成查询字符串就解决了。
location / {
            
            index index.php index.html index.htm;
            if (!-e $request_filename){ 
               rewrite ^/(.*)$ /index.php?_path_info=/$1 last;
            } 
        }
在index.php中,把query string "_path_info" 放到$_SERVER变量中。
<?php
ini_set("display_errors",true);
error_reporting(E_ALL|E_ERROR);
//print_r($_SERVER);
$_SERVER['PATH_INFO']=@$_GET['_path_info']; //加这一行,yaf只认PATH_INFO
define("APPLICATION_PATH",dirname(__DIR__));
$app = new Yaf\Application(APPLICATION_PATH.'/conf/application.ini');
$app->bootstrap()->run();
?>I success in "application" directory set to:
- application/
  - Bootstrap.php   
  + modules 
    + Index
      + controllers
         - Index.php         //default controller
      + views    
         |+ index
            - index.phtml   //view template for default action
  - library
  - models  
  - plugins 
And Bootstrap.php should be enter at least 3 line like these:
<?php
class Bootstrap extends Yaf_Bootstrap_Abstract {
}the nginx rewrite rule should be:
if (!-e $request_filename) {
       rewrite ^/(.*)  /index.php?$1 last;
}http://us3.php.net/manual/zh/yaf.tutorials.php
Lost default Bootstrap.php 
<?php
   /* bootstrap class should be defined under ./application/Bootstrap.php */
   class Bootstrap extends Yaf_Bootstrap_Abstract {
        public function _initConfig(Yaf_Dispatcher $dispatcher) {
            var_dump(__METHOD__);
        }
        public function _initPlugin(Yaf_Dispatcher $dispatcher) {
            var_dump(__METHOD__);
        }
   }use  nginx  and php-fpm   you can   config:
    location / {
        try_files $uri    $uri/    /index.php$is_args$args;
        }
        location ~ \.php$ {
                fastcgi_pass   127.0.0.1:9000;
               #fastcgi_pass unix:/tmp/php-cgi.sock;
                fastcgi_index  index.php;
            fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include        fastcgi_params;
        }nginx重写不知为什么死循环
rewrite ^/(.*)  /index.php/$1 last;
/index.php/index.php/index.php/index.php/index.php/index.php/index.php/index.php/Index
后来我改成查询字符串就解决了。
location / {
            
            index index.php index.html index.htm;
            if (!-e $request_filename){ 
               rewrite ^/(.*)$ /index.php?_path_info=/$1 last;
            } 
        }
在index.php中,把query string "_path_info" 放到$_SERVER变量中。
<?php
ini_set("display_errors",true);
error_reporting(E_ALL|E_ERROR);
//print_r($_SERVER);
$_SERVER['PATH_INFO']=@$_GET['_path_info']; //加这一行,yaf只认PATH_INFO
define("APPLICATION_PATH",dirname(__DIR__));
$app = new Yaf\Application(APPLICATION_PATH.'/conf/application.ini');
$app->bootstrap()->run();
?>