Hey Guys,
Having an issues with my rewrite rule.
I was able to remove index.php with the following htacess
_____________________________
AcceptPathInfo On
Options -Indexes
<IfModule mod_rewrite.c>
RewriteEngine On
# Looks for files and directories that do not exist
# and provide the segments to the index.php file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^/index.php
RewriteCond $1 !.(css|js|png|jpe?g|gif|ico)$ [NC]
RewriteRule ^(.+)$ index.php/$1 [L]
</IfModule>
_____________________________
I removed index.php from my admin > general configuration
but it my links results appear like this.
My question is how do i removed the “?”
Thanks
Im on EE V 2.2.2