2012-06-21 79 views
8

走過時,我希望訪問的頁面一樣URL參數與Laravel

http://mysitelocaltion/user_name/user_id 

這只是一個虛擬的鏈接,我已經使用的.htaccess -rewrite規則]在內部通過「USER_NAME」和「use_id」爲GET參數爲我的實際頁面

我們如何在Laravel中實現相同?

更新: 這應有助於(文檔)

Route::get('user/(:any)/task/(:num)', function($username, $task_number) 
    { 
    // $username will be replaced by the value of (:any) 
    // $task_number will be replaced by the integer in place of (:num) 
    $data = array(
    'username' => $username, 
    'task' => $task_number 
    ); 
    return View::make('tasks.for_user', $data); 
    }); 

回答

13
Route::get('(:any)/(:any)', function($user_name, $user_id) { 
    echo $user_name; 
}); 

大你使用Laravel去看看!

+0

謝謝,我們如何將它傳遞到查看頁面 – Akash

+2

這些是基本的問題,我建議你看看我的教程在http://daylerees.com :) – daylerees

+0

Ahaaa,謝謝,只是想通了 – Akash