Hey Y'all,
While I'm working on developing Laravel version of CMS I just need temp fix to hide /index in the url if possible using the .htaccess
So when people visit my site it doesn't go to index#registration
Hey Y'all,
While I'm working on developing Laravel version of CMS I just need temp fix to hide /index in the url if possible using the .htaccess
So when people visit my site it doesn't go to index#registration
If you want to use the .htacces, you could do something similar to what my hotel uses:
My site uses Codeigniter so it will be different but by default, Codeigniter adds 'index.php' into URLs, this in the .htaccess directs traffic through the index.php without it being in the URL.Code:RewriteRule ^(.*)$ index.php/$1 [L]
The code above my need changing a little to work for your site but it is a basic exmple of how it could be done.