@@ -24,9 +24,9 @@ I have to include index.php in my URL
24
24
-------------------------------------
25
25
26
26
If a URL like ``/mypage/find/apple `` doesn't work, but the similar
27
- URL ``/index.php/mypage/find/apple `` does, that sounds like your `` .htaccess `` rules
27
+ URL ``/index.php/mypage/find/apple `` does, that sounds like your ** .htaccess ** rules
28
28
(for Apache) are not set up properly, or the ``mod_rewrite `` extension
29
- in Apache's `` httpd.conf `` is commented out.
29
+ in Apache's ** httpd.conf ** is commented out.
30
30
31
31
Only the default page loads
32
32
---------------------------
@@ -37,7 +37,7 @@ REQUEST_URI variable needed to serve search-engine friendly URLs. As a
37
37
first step, open your **app/Config/App.php ** file and look for
38
38
the URI Protocol information. It will recommend that you try a couple of
39
39
alternate settings. If it still doesn't work after you've tried this
40
- you'll need to force CodeIgniter to add a question mark to your URLs. To
40
+ you'll need to force CodeIgniter to add a question mark (`` ? ``) to your URLs. To
41
41
do this open your **app/Config/App.php ** file and change this:
42
42
43
43
.. literalinclude :: troubleshooting/001.php
@@ -59,7 +59,7 @@ The tutorial gives 404 errors everywhere :(
59
59
-------------------------------------------
60
60
61
61
You can't follow the tutorial using PHP's built-in web server.
62
- It doesn't process the ` .htaccess ` file needed to route
62
+ It doesn't process the ** .htaccess ** file needed to route
63
63
requests properly.
64
64
65
65
The solution: use Apache to serve your site, or else the built-in
@@ -88,7 +88,7 @@ CodeIgniter Error Logs
88
88
89
89
CodeIgniter logs error messages, according to the settings in **app/Config/Logger.php **.
90
90
91
- You can adjust the error threshold to see more or fewer messages.
91
+ You can adjust the error threshold to see more or fewer messages. See :ref: ` Logging < logging-configuration >` for details.
92
92
93
- The default configuration has daily log files stored in ` writable/logs ` .
93
+ The default configuration has daily log files stored in ** writable/logs ** .
94
94
It would be a good idea to check them if things aren't working the way you expect!
0 commit comments