How to make a website redirection in project

Hello. So, I have created a project, but I want to find out how to create a redirect, for example, if I have a page https://ingunapreize.epizy.com/index.php and I need to show https://ingunapreize.epizy.com/ how can this be noticed with the help of redirect?

you can achieve this using .htaccess file,

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) /index.php/$1 [L]

thanks but already figured out

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.