Actions
Task #86585
closedConfigurability of page routing
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Site Handling, Site Sets & Routing
Target version:
-
Start date:
2018-10-06
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
9
PHP Version:
7.2
Tags:
Complexity:
Sprint Focus:
Description
If I wanted to use .html as url prefix I had to extend the default page decorator
On rootpages it would generate /index.html else.
PageTypeSuffix:
type: CustomPageType
default: '.html'
index: 'index'
map:
'.html': 0
class CustomPageTypeDecorator extends PageTypeDecorator
{
public const IGNORE_INDEX = [
'/index.html',
'/index/',
];
public const ROUTE_PATH_DELIMITERS = ['.', '-', '_', '/'];
/**
* @param \TYPO3\CMS\Core\Routing\RouteCollection $collection
* @param array $parameters
*/
public function decorateForGeneration(RouteCollection $collection, array $parameters): void
{
parent::decorateForGeneration($collection, $parameters);
/**
* @var string $routeName
* @var \TYPO3\CMS\Core\Routing\Route $route
*/
foreach ($collection->all() as $routeName => $route) {
$path = $route->getPath();
if (true === \in_array($path, self::IGNORE_INDEX, true)) {
$route->setPath('/');
}
}
}
}
Updated by Riccardo De Contardi about 6 years ago
- Category set to Site Handling, Site Sets & Routing
Updated by Benni Mack over 5 years ago
- Status changed from New to Needs Feedback
Hi Daniel,
can you clarify again what exactly the issue is?
Your root page should be `/index.html`, but the others `/subpage.html`?
Updated by Daniel Dorndorf over 5 years ago
Hi Benni,
no, the issue is that it generates the "/index.html" on the startpage and that it shouldn't, only for the subpages.
Even if ".html" can be neglected for seo nowadays it should be configurable I think.
The code I provided helped me to hack around this issue but I never had it in production.
Greetings
Daniel
Updated by Rémy DANIEL about 5 years ago
I would like to configure an empty index:
PageTypeSuffix: type: PageType default: '.html' index: '' map: []
This would generate:
home: / subpage: /subpage.html
Updated by Rémy DANIEL almost 5 years ago
- Related to Task #86887: Enable urls like `https://example.com/` and `https://example.com/path/to/site.html`, so only `.html` suffix for page type 0 if there is a path. added
Updated by Susanne Moog over 4 years ago
- Status changed from Needs Feedback to Closed
Closed as duplicate of #86887 - please continue there.
Actions