[attachment=1811][attachment=1811]Hello support,
I am new to CodeIgniter. I am following this tutorial. https://www.youtube.com/watch?v=TC_9EuMTPN4&t=1090s
I am on Xampp On W10 and i have a form with this URL:
(see attachment)
[/url]
which exists here: C:\xampp\htdocs\codei4
The Problem is with the redirect:
I have tried searching all i am getting is this is a bug in CodeIgniter4----
Is there a Solution ???????
When I press the submit(create) button, ti takes me to this URL:
[url=http://localhost:8888/blog/create/] with a ObJect Not Found! Error 404!
Config/App:
.htaccess in public folder:
Routes look like this:
I have tried hard coding(codei4/public in front of every instance of blog/create in my code.
I need help.
If you need further Info --Let me know.
thank you
I am new to CodeIgniter. I am following this tutorial. https://www.youtube.com/watch?v=TC_9EuMTPN4&t=1090s
I am on Xampp On W10 and i have a form with this URL:
(see attachment)
[/url]
Code:
http://localhost:8888/codei4/public/blog/create
The Problem is with the redirect:
Code:
return redirect()->to('/');
I have tried searching all i am getting is this is a bug in CodeIgniter4----
Is there a Solution ???????
When I press the submit(create) button, ti takes me to this URL:
Code:
http://localhost:8888/blog/create/
Config/App:
Code:
public $baseURL = 'http://localhost:8888/codei4/public';
public $indexPage = '';
public $uriProtocol = 'REQUEST_URI';
Code:
Options +FollowSymLinks
Options -Indexes
DirectoryIndex index.php
RewriteEngine on
RewriteCond $1 !^(index\.php|images|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
Routes look like this:
Code:
$routes->get('/', 'Pages::index');
$routes->get('blog/create', 'Blog::create');
$routes->get('(:any)', 'Pages::showme/$1');
I have tried hard coding(codei4/public in front of every instance of blog/create in my code.
I need help.
If you need further Info --Let me know.
thank you