Skip to content

Commit

Permalink
Fix #413 - Documentation cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
lochmueller committed May 2, 2024
1 parent 999000d commit 57c0d36
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Documentation/Configuration/Htaccess.rst
Original file line number Diff line number Diff line change
Expand Up @@ -199,16 +199,18 @@ variables (SFC_ROOT, SFC_GZIP) and read the comments carefully.
### End: StaticFileCache ###
If you use the oldschool .htaccess rewrite rules that come with the TYPO3 dummy,
If you use the default .htaccess rewrite rules that come with the TYPO3 dummy,
then the relevant StaticFileCache configuration should be inserted in the
.htaccess file just before these lines:

.. code-block:: apache
# If the file/symlink/directory does not exist => Redirect to index.php.
# For httpd.conf, you need to prefix each '%{REQUEST_FILENAME}' with '%{DOCUMENT_ROOT}'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule .* index.php [L]
RewriteRule ^.*$ %{ENV:CWD}index.php [QSA,L]
If the TYPO3 Installation isn´t in your root directory (say your site lives in
:samp:`https://some.domain.com/t3site/`), then you have to add the '/t3site'
Expand Down

0 comments on commit 57c0d36

Please sign in to comment.