My website has that URL structure:
and in CodeIgniter route file
$route['sign-up'] = 'members/signup'; $route['blog'] = 'blog/home'; I would like to have instead:
My hosts file is ok:
127.0.0.1 www.mywebsite.com 127.0.0.1 mywebsite.com 127.0.0.1 blog.mywebsite.com 127.0.0.1 signup.mywebsite.com Im trying many tips with RewriteCond and RewriteRule but I don't find the good match...
Thank's!