9 lines
355 B
PHP
9 lines
355 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use Plugins\Neatstudio\BlogSeo\Http\SeoController;
|
|
|
|
// GEO:面向 AI 搜索引擎(LLM 爬虫)
|
|
Route::get('/llms.txt', [SeoController::class, 'llmsTxt'])->name('geo.llms');
|
|
Route::get('/posts/{slug}.md', [SeoController::class, 'postMarkdown'])->where('slug', '[A-Za-z0-9\-]+')->name('geo.post.markdown');
|