PHP Classes

The documentation is missing the fact that you need to update...

Recommend this page to a friend!

      Router Lite  >  All threads  >  The documentation is missing the...  >  (Un) Subscribe thread alerts  
Subject:The documentation is missing the...
Summary:Package rating comment
Messages:2
Author:Jared Allen
Date:2017-06-01 12:59:36
 

Jared Allen rated this package as follows:

Utility: Good
Consistency: Good
Documentation: Good
Examples: Good

  1. The documentation is missing the...   Reply   Report abuse  
Picture of Jared Allen Jared Allen - 2017-06-01 12:59:36
The documentation is missing the fact that you need to update your .htaccess to point to the index.php file for any uri entered.
The following will help anyone looking to set this up in the future. Just drop this in your .htaccess file:

RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]

  2. Re: The documentation is missing the...   Reply   Report abuse  
Picture of devg devg - 2017-06-01 17:02:26 - In reply to message 1 from Jared Allen
Thanks for response!
I added some description and sample files. Check it for updates.