apache - Can Laravel 4 be run without mod_rewrite? -
our client doesn't have mod_rewrite enabled on host. possible run laravel 4 without it?
the default .htaccess file looks this:
<ifmodule mod_rewrite.c> <ifmodule mod_negotiation.c> options -multiviews </ifmodule> rewriteengine on # redirect trailing slashes... rewriterule ^(.*)/$ /$1 [l,r=301] # handle front controller... rewritecond %{request_filename} !-d rewritecond %{request_filename} !-f rewriterule ^ index.php [l] </ifmodule>
if yes, how?
Comments
Post a Comment