From a84c4ba9551e8abc71b30998b5b6b5cfe1af70c5 Mon Sep 17 00:00:00 2001 From: kenjis Date: Fri, 16 Sep 2022 15:55:45 +0900 Subject: [PATCH] docs: add "No input file specified" --- user_guide_src/source/installation/troubleshooting.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/user_guide_src/source/installation/troubleshooting.rst b/user_guide_src/source/installation/troubleshooting.rst index 992c6969ef94..40043971728a 100644 --- a/user_guide_src/source/installation/troubleshooting.rst +++ b/user_guide_src/source/installation/troubleshooting.rst @@ -46,6 +46,15 @@ To this: .. literalinclude:: troubleshooting/002.php +No input file specified +----------------------- + +If you see "No input file specified", try to change the rewrite rule like the following (to add ``?`` after ``index.php``): + +.. code-block:: apache + + RewriteRule ^([\s\S]*)$ index.php?/$1 [L,NC,QSA] + The tutorial gives 404 errors everywhere :( -------------------------------------------