laravel

  1. K

    Steps to remove /public from Laravel URL

    If you want to use laravel directly with its domain name then you have to check below steps: For security reason you have to take backup of your .htaccess file with below command: cp -vi .htaccess{,.bak} Now you have to add below code in your .htaccess file. RewriteEngine On RewriteCond...
  2. bhawanisingh

    Steps to download Laravel project locally from live server

    Steps to download Laravel project locally from live server Laravel is dubbed as the framework for web artisans. This is because its MVC architecture makes it easy for web developers to create web-based apps in short amount of time. And just like other frameworks, you can run it locally on your...
  3. PradeepJangid

    How to run Laravel without Artisan Serve Command?

    1. Create local directory in your project directory. 2. Move all files and folders except public directory in the local directory. 3. Move all files and folders from public directory to project directory and remove public directory. 4. Open index.php file and replace require...
Top