Running TYPO3 11 with ddev

tomasnorre

Tomas Norre Mikkelsen

Posted on January 2, 2021

Running TYPO3 11 with ddev

I recently started a new Project with TYPO3 11 and ddev, there a two things your should be aware of.

  1. Make sure to use ddev 1.16.5 or never.
  2. Add the default .htaccess to you public-folder, otherwise the backend Route will not work.

My setup is as you see, with apacehe-fpm.

When Running with nginx-fpm no additional configuration is needed besides ddev 1.16.5 or never.

RewriteEngine On

RewriteRule ^(?:fileadmin/|typo3conf/|typo3temp/|uploads/) - [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteCond %{REQUEST_URI} ^/typo3/.*$
RewriteRule ^typo3/(.*)$ %{ENV:CWD}typo3/index.php [QSA,L]
Enter fullscreen mode Exit fullscreen mode
💖 💪 🙅 🚩
tomasnorre
Tomas Norre Mikkelsen

Posted on January 2, 2021

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Running TYPO3 11 with ddev
typo3 Running TYPO3 11 with ddev

January 2, 2021