I have this url https://test.app/myapp/login
. All I want is to remove the 'myapp' string using .htaccess. This is what I tried so far.
RewriteEngine on
RewriteCond $1 !^(index\.php|resources|robots\.txt)
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
RewriteCond %{QUERY_STRING} ^(.*)&?myapp=([^&]+)&?(.*)$
RewriteRule ^(.*)$ /$1?%1%3 [R=301,L]
But its not working. Btw using codeigniter 4