Laravel is a PHP framework that reduces the work load of creating PHP applications. As it is a framework, there are limitations and some problems just like any other PHP program. Laravel framework has a “public” folder. The HTML files that are going to be displayed on Web Server will be from this folder. Since it is a sub directory of the framework, to access the real site, we would have to go to the following URL :... [READ MORE]
Posts marked with "Rewrite" in tags
Hide File Extensions In Browsers Using .htaccess
Many of us programmers want to hide the file extension of server files such as .php, .jsp, .py etc…. You can easily hide these extensions with the help of a .htaccess file. This feature is only available to Apache servers. Create a file named .htaccess if your root directory of site doesn’t have one. Add these lines to the .htaccess file : <span style="background-color: white; font-family: inherit;"><span class="kw1" style="border: 0px; color: #2060a0; line-height: 18.... [READ MORE]