• 技术文章 >php教程 >PHP源码

    php cms门户网站模版

    PHP中文网PHP中文网2016-05-23 16:38:53原创525

    1. [PHP]代码

    <?php
    
    /*
    |--------------------------------------------------------------------------
    | Application Routes
    |--------------------------------------------------------------------------
    |
    | Here is where you can register all of the routes for an application.
    | It's a breeze. Simply tell Laravel the URIs it should respond to
    | and give it the controller to call when that URI is requested.
    |
    */
    
    Route::get('/', 'WelcomeController@index');
    
    Route::get('home', 'HomeController@index');
    
    Route::post('/appconf', 'WelcomeController@appconf');
    Route::get('/appconf', 'WelcomeController@appconf');
    
    Route::get('law', 'WelcomeController@law');
    
    Route::get('lawframe', 'WelcomeController@lawframe');
    
    Route::controllers([
            'auth' => 'Auth\AuthController',
            'password' => 'Auth\PasswordController',
    ]);
    
    Route::group(['prefix' => 'user', 'namespace' => 'User','middleware'=>'user'], function()
    {
      Route::get('/', 'UserController@index');
      Route::post('/', 'UserController@index');
      Route::get('/edit/{id}', 'UserController@edit');
      Route::post('/edit/{id}', 'UserController@edit');
      Route::get('/update/{id}', 'UserController@update');
      Route::post('/update/{id}', 'UserController@update');
      Route::get('/history/{id}', 'UserController@history');
      Route::post('/history/{id}', 'UserController@history');
    
      Route::get('/wealthadd/{id}', 'UserController@wealthadd');
      Route::post('/wealthadd/{id}', 'UserController@wealthadd');
    
      Route::get('/dowealthadd/{id}', 'UserController@dowealthadd');
    "app/Http/routes.php" 154L, 5664C                                      1,1          顶端
    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    专题推荐:php
    上一篇:PHP读取网卡MAC地址 下一篇:自定义对称 加密和解密
    Web大前端开发直播班

    相关文章推荐

    • 剖析PHP中的输出缓冲 flush之类• 戏说PHP框架的味道• PHP总结我的简单静态页生成 过程,• 整理php操作memcache缓存基础方法• PHP常用用的六个处理正则表达式函数

    全部评论我要评论

  • 取消发布评论发送
  • 1/1

    PHP中文网