By default, the index.php file will be included in your URLs:
First Enable Your Apache server rewrite_module enable,
And Create a .htacces file in your root folder with the following code:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
![]()
0 Comments