Laravel动态重定向(重写)来自数据库

时间:2016-10-08 17:38:19

标签: php .htaccess laravel laravel-5 url-rewriting

我想让管理员在特殊表格中创建成对的网址。

例如,我们有一个链接 example.com/cars/bmw?sort=desc&color=white&price_from=999999999&limit=20

管理员希望通过 example.com/bmw-cool 授予对此页面的访问权限。

因此,如果用户进入第一个链接,他会获得适当的内容,但他的网址会更改为第二个。如果他直接进入第二个链接,他会在第二个网址下提供相同的内容。

创建此类重定向/重写表的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

您可以在routes.php文件中添加:

// in routes.php
Route::get('/bmw-cool', function () {
    return redirect('cars/bmw?sort=desc&color=white&price_from=999999999&limit=20');
});