Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

RevCMS URL

Custom Title Activated
Loyal Member
Joined
Jun 27, 2009
Messages
1,571
Reaction score
170
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

Glee - RevCMS URL - RaGEZONE Forums


So when people visit my site it doesn't go to index#registration
 
Experienced Elementalist
Joined
Aug 30, 2013
Messages
287
Reaction score
64
If you want to use the .htacces, you could do something similar to what my hotel uses:

Code:
RewriteRule ^(.*)$ index.php/$1 [L]

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.

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.
 
Upvote 0
Back
Top