We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b2705ec commit 603a392Copy full SHA for 603a392
routes/web.php
@@ -223,17 +223,15 @@
223
}); // ENd Admin authenticated routes
224
});
225
226
-
227
- if(config('advanced-config.custom_url_prefix') == ""){
228
- Route::get('/{littlelink}', [UserController::class, 'littlelink'])->name('littlelink');
229
- }
230
231
// Displays Maintenance Mode page
232
if(env('MAINTENANCE_MODE') == 'true' or file_exists(base_path("storage/MAINTENANCE"))){
233
Route::get('/{any}', function () {
234
return view('maintenance');
235
})->where('any', '.*');
236
}
237
238
239
require __DIR__.'/auth.php';
+
+if(config('advanced-config.custom_url_prefix') == ""){
+ Route::get('/{littlelink}', [UserController::class, 'littlelink'])->name('littlelink');
+}
0 commit comments