I have created an application in PHP MVC,and the http request was like domain.com/index.php?controller/action, i want to remove index.php? and the final url looks like http://domain.com/controller/action. Any help will be highly appreciated
currently my .htaccess file looks like below
RewriteEngine On
RewriteBase /
<IfModule mod_rewrite.c>
# Removes index.php from ExpressionEngine URLs
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php/$1 [L]
</IfModule>
it only removes the index.php and the url become http://domain.com/?controller/action, i want that "?" to be off from the url.