N-Bomb(Nerd) Posted September 5, 2009 Share Posted September 5, 2009 When somebody visits my website the domain shows as: http://www.website.com/index.php Is there a way to hide the "index.php" in the url? Quote Link to comment Share on other sites More sharing options...
wildteen88 Posted September 5, 2009 Share Posted September 5, 2009 Just go to http://www.website.com/ instead. Quote Link to comment Share on other sites More sharing options...
bundyxc Posted September 5, 2009 Share Posted September 5, 2009 Hehehe, I doubt that was what he was what wildteen88 was talking about. I'm assuming he's trying to ask if he can actually hide the filename from the user, not for his personal browsing. Quote Link to comment Share on other sites More sharing options...
corbin Posted September 5, 2009 Share Posted September 5, 2009 As far as mod_rewrite goes, this is about as simple as it gets.... RewriteRule ^index\.php / [R=301] Or: Redirect permanent /index.php / Quote Link to comment Share on other sites More sharing options...
synapp2 Posted September 6, 2009 Share Posted September 6, 2009 Use the index.php page only to re-direct to the page you would like to show. One way to do it would be to have your index.php generate a JavaScript statement: window.location="the page you want to display"; Don't put any real content into an index page. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.