Laravel 4 remove Index.php from URL

后端 未结 7 1307
忘掉有多难
忘掉有多难 2020-12-21 04:27

I need some help with laravel 4 application i need to remove Index.php from url i have tried the solution that has been mentioned in laravel documentation

P         


        
7条回答
  •  情深已故
    2020-12-21 05:05

    just go to your apache settings folder, i use wamp so myne is

    C:/wamp/bin/apache/apache2.4.9/conf/httpd.conf - file

       // located on line 154 precisely... 
    
        #LoadModule rewrite_module modules/mod_rewrite.so  
    
       // to 
    
        LoadModule rewrite_module modules/mod_rewrite.so 
    

    restart WAMP and BOOM!.. it works.

提交回复
热议问题