Posted by Nelson
2014-04-09

Hi Tom
How are you doing!!

I wanted to remove @ from short url and I made it.

and then made the changes in htaccess file
from this

RewriteEngine onRewriteRule ^/([_a-zA-Z0-9\-]*)$ redirect.php?p=$1

to this

RewriteEngine on
RewriteRule ^([_a-zA-Z0-9\-]*)$ redirect.php?p=$1

In beginning it was working but now home page is not loading without index.php file.
Posted by Tom
2014-04-10

Hi Nelson,

>made the changes in htaccess file

Did you edit web/config/config.url.inc.php, also?
You need to remove '@' from URL_PREFIX.
define( 'URL_PREFIX', 'http://mydomain.com/web/redirect/@' );