We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi there,
this commit: TYPO3/typo3@f00efef
breaks the LTS with nginx
this line make half of the job:
rewrite ^/(ajax|alt_clickmenu|alt_db_navframe|alt_doc|alt_file_navframe|browser|db_new|dummy|init|login_frameset|logout|mod|move_el|show_item|tce_db|tce_file|thumbs)\.php$ /${cwd}deprecated.php last;
however I have no clue how translate
RewriteCond $0#%{REQUEST_URI} ([^#]*)#(.*)\1$ RewriteRule ^.*$ - [E=CWD:%2]
to nginx
The text was updated successfully, but these errors were encountered:
I think this could work:
rewrite ^(.*/)(ajax|alt_clickmenu|alt_db_navframe|alt_doc|alt_file_navframe|browser|db_new|dummy|init|login_frameset|logout|mod|move_el|show_item|tce_db|tce_file|thumbs).php$ $1deprecated.php last;
Could you confirm it and I do a PR?
Sorry, something went wrong.
No branches or pull requests
Hi there,
this commit: TYPO3/typo3@f00efef
breaks the LTS with nginx
this line make half of the job:
rewrite ^/(ajax|alt_clickmenu|alt_db_navframe|alt_doc|alt_file_navframe|browser|db_new|dummy|init|login_frameset|logout|mod|move_el|show_item|tce_db|tce_file|thumbs)\.php$ /${cwd}deprecated.php last;
however I have no clue how translate
to nginx
The text was updated successfully, but these errors were encountered: