1

I tried to use:

Behavoir >> URL Alias - "team"

and receive:

http://remax-prestige.pl/typo3-95/index.php?id=team

team is ok, but how I can receive the link without index.php?id=

René Pflamm
  • 3,273
  • 17
  • 29
wieslawe
  • 57
  • 3

2 Answers2

2

You need to add a site in the Site Management module. When having a domain and path prefix, TYPO3 can make nice URLs.

Thomas Löffler
  • 5,922
  • 1
  • 14
  • 29
1

You need to add TrailingSlash Settings in your Site Management config.yaml

routeEnhancers:
  PageTypeSuffix:
    type: PageType
    default: '/'
    suffix: '/'
    index: ''
    map:
      '/': 0
      'sitemap.xml': 1533906435

This works for me.

ChrisKr
  • 167
  • 10