@@ -24,9 +24,9 @@ I have to include index.php in my URL
2424-------------------------------------
2525
2626If 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
2828(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.
3030
3131Only the default page loads
3232---------------------------
@@ -37,7 +37,7 @@ REQUEST_URI variable needed to serve search-engine friendly URLs. As a
3737first step, open your **app/Config/App.php ** file and look for
3838the URI Protocol information. It will recommend that you try a couple of
3939alternate 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
4141do this open your **app/Config/App.php ** file and change this:
4242
4343.. literalinclude :: troubleshooting/001.php
@@ -59,7 +59,7 @@ The tutorial gives 404 errors everywhere :(
5959-------------------------------------------
6060
6161You 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
6363requests properly.
6464
6565The solution: use Apache to serve your site, or else the built-in
@@ -88,7 +88,7 @@ CodeIgniter Error Logs
8888
8989CodeIgniter logs error messages, according to the settings in **app/Config/Logger.php **.
9090
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.
9292
93- The default configuration has daily log files stored in ` writable/logs ` .
93+ The default configuration has daily log files stored in ** writable/logs ** .
9494It would be a good idea to check them if things aren't working the way you expect!
0 commit comments