Skip to content

Commit

Permalink
Add TYPO3 11 Backend URL rewriting support
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbertsoft committed Dec 19, 2020
1 parent a7d5c6a commit c310136
Showing 1 changed file with 6 additions and 0 deletions.
Expand Up @@ -31,6 +31,12 @@ server {
try_files $uri $uri/ /index.php$is_args$args;
}

# TYPO3 11 Backend URL rewriting support
location /typo3/ {
absolute_redirect off;
try_files $uri $uri/ /typo3/index.php$is_args$args;
}

# pass the PHP scripts to FastCGI server listening on socket
location ~ \.php$ {
try_files $uri =404;
Expand Down

0 comments on commit c310136

Please sign in to comment.