ابدأ بالتواصل مع الأشخاص وتبادل معارفك المهنية

أنشئ حسابًا أو سجّل الدخول للانضمام إلى مجتمعك المهني.

متابعة

How to remove index.php from url in Laravel PHP Fromework?

user-image
تم إضافة السؤال من قبل Rahul Sharma , PHP Developer , amazecreators.com
تاريخ النشر: 2017/12/07
Rashedul Hoque
من قبل Rashedul Hoque , Sr. Software Developer , Orko Health Ltd.

Create a .htaccess file your Laravel root directory if it does not exists already. (Normally it is under your public_html folder)

Edit the .htaccess file so that it contains the following code:

<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^(.*)$ public/$1 [L] </IfModule>

Now you should be able to access the website without the "/public/index.php/" part.

Thanks

المزيد من الأسئلة المماثلة