如何使用 Inertia JS 在 Laravel 中默认编辑或删除身份验证的 URL?
How can I to edit or remove the URLs of the authentication by default in Laravel using Inertia JS?
我正在使用 Laravel 8 和带有 VueJS 的 Inertia JS 开始一个新项目。我正在使用 Inertia 生成的身份验证路由和视图,但在我的应用程序中我不需要 /register
url,因此我需要将其删除以避免其他人可以输入 URL.
我怎样才能删除它?或者管理 Inertia 生成的 urls 的地方在哪里?或者例如,如果我不想删除 url,但我想将其重命名为 /signup
,我该怎么做?
我一直在惯性文档中寻找信息,但没有找到任何信息。
这是我的 web.php 路由文件,那些路由不在此处
<?php
use App\Http\Controllers\Experimental\RandomController;
use Illuminate\Foundation\Application;
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return Inertia::render('Welcome', [
'canLogin' => Route::has('login'),
'canRegister' => Route::has('register'),
'laravelVersion' => Application::VERSION,
'phpVersion' => PHP_VERSION,
]);
});
Route::middleware(['auth:sanctum', 'verified'])->get('/dashboard', function () {
return Inertia::render('Dashboard');
})->name('dashboard');
更新 1:
我正在使用 Laravel Jetstream
他们似乎没有记录如何执行此操作,但从 Fortify 配置文件看来是可行的。
打开 config/fortify.php
并评论或从数组中删除 Features::registration(),
:
use Laravel\Fortify\Features;
'features' => [
// Features::registration(),
// ...
],
检查路由下的auth.php,你应该在那里找到所有的授权路由。所以你可以重命名注册url来注册并创建一个新的控制器或者重命名注册用户控制器
我正在使用 Laravel 8 和带有 VueJS 的 Inertia JS 开始一个新项目。我正在使用 Inertia 生成的身份验证路由和视图,但在我的应用程序中我不需要 /register
url,因此我需要将其删除以避免其他人可以输入 URL.
我怎样才能删除它?或者管理 Inertia 生成的 urls 的地方在哪里?或者例如,如果我不想删除 url,但我想将其重命名为 /signup
,我该怎么做?
我一直在惯性文档中寻找信息,但没有找到任何信息。
这是我的 web.php 路由文件,那些路由不在此处
<?php
use App\Http\Controllers\Experimental\RandomController;
use Illuminate\Foundation\Application;
use Illuminate\Support\Facades\Route;
use Inertia\Inertia;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/
Route::get('/', function () {
return Inertia::render('Welcome', [
'canLogin' => Route::has('login'),
'canRegister' => Route::has('register'),
'laravelVersion' => Application::VERSION,
'phpVersion' => PHP_VERSION,
]);
});
Route::middleware(['auth:sanctum', 'verified'])->get('/dashboard', function () {
return Inertia::render('Dashboard');
})->name('dashboard');
更新 1: 我正在使用 Laravel Jetstream
他们似乎没有记录如何执行此操作,但从 Fortify 配置文件看来是可行的。
打开 config/fortify.php
并评论或从数组中删除 Features::registration(),
:
use Laravel\Fortify\Features;
'features' => [
// Features::registration(),
// ...
],
检查路由下的auth.php,你应该在那里找到所有的授权路由。所以你可以重命名注册url来注册并创建一个新的控制器或者重命名注册用户控制器