laravel / ideas

Issues board used for Laravel internals discussions.
938 stars 28 forks source link

Remove index.php from the URL in Laravel #2482

Open vahidalvandi opened 3 years ago

vahidalvandi commented 3 years ago

please see this short article

if you add this line in htaccess solve

<IfModule mod_rewrite.c>
    RewriteEngine On

    # Redirect if index.php is in the URL
    RewriteRule ^index.php/(.+) /$1 [R=301,L]
</IfModule>
ahinkle commented 3 years ago

What short article?

vahidalvandi commented 3 years ago

https://ma.ttias.be/remove-index-php-from-the-url-in-laravel/

mesiarm commented 3 years ago

Article says: "It’s needed for some hosting environments that don’t support pretty-printed URLs."

vahidalvandi commented 3 years ago

no you can test it in localhost ,,