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 b97a137 commit 5a44cbdCopy full SHA for 5a44cbd
src/Providers/LlmsTxtServiceProvider.php
@@ -80,7 +80,7 @@ protected function registerIndividualPostRoutes(): void
80
{
81
if (config('llms-txt.individual_posts.enabled', false)) {
82
$postTypesPattern = implode('|', config('llms-txt.individual_posts.post_types', ['post', 'page']));
83
- Route::get("{postType}-{slug}.txt", [LlmsTxtController::class, 'individual'])
+ Route::get('{postType}-{slug}.txt', [LlmsTxtController::class, 'individual'])
84
->where('postType', $postTypesPattern)
85
->where('slug', '.+');
86
}
0 commit comments