Routes- Today i died |
(09-18-2019, 07:13 AM)5flex Wrote: Hello Dev's! Today i died!Sorry for my bad English, I'm from Russia too! I have ubuntu 18.04 with apache (no XAMPP or LAMPP). And codeigniter 4 routes didn't work on ubuntu. But it worked on Windows with Openserver. So I wasted a lot of time. And I have solved this problem just now. Apache site directory is /var/www/html/ and for example I have CI4 project in example.com folder just like this /var/www/html/example.com . I need the work of external queries at http://example.com. But if I write http://example.com I watch different folders and files. I need write http://example.com/public - then I see my site but without css and js. And http://example.com/public/myController does not work. May be http://example.com/public/index.php/myController will work... I did the following: --sudo nano /etc/apache2/sites-available/example.com.conf and wrote like this: <VirtualHost *:80> ServerAdmin [email protected] ServerName example.com ServerAlias www.example.com DocumentRoot /var/www/html/example.com/public/index.php ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost> --sudo a2ensite example.com --sudo service apache2 restart why? https://codeigniter4.github.io/userguide...pages.html Running the App Ready to test? You cannot run the app using PHP’s built-in server, since it will not properly process the .htaccess rules that are provided in public, and which eliminate the need to specify “index.php/” as part of a URL. CodeIgniter has its own command that you can use though. So, DocumentRoot /var/www/html/example.com/public/index.php is given “index.php/” as part of a URL. It is worked! |
Messages In This Thread |
Routes- Today i died - by 5flex - 09-18-2019, 07:13 AM
RE: Routes- Today i died - by ciadmin - 09-18-2019, 07:43 AM
RE: Routes- Today i died - by includebeer - 09-18-2019, 11:21 AM
RE: Routes- Today i died - by Yuriy - 09-18-2019, 12:58 PM
RE: Routes- Today i died - by unromantic - 09-18-2019, 03:09 PM
RE: Routes- Today i died - by ciadmin - 09-18-2019, 05:50 PM
RE: Routes- Today i died - by Yuriy - 09-19-2019, 01:12 AM
|