問:如何從Laravel 產生的URL 刪除「public/index.php」段?
<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^(.*)$ public/ [L] </IfModule>
paths.php:
'app' => __DIR__.'/../app', 'public' => __DIR__.'/../../',
index.php:
require __DIR__.'/laravel_code/bootstrap/autoload.php'; $app = require_once __DIR__.'/laravel_code/bootstrap/start.php';
以上是如何從我的 Laravel URL 中刪除「public/index.php」?的詳細內容。更多資訊請關注PHP中文網其他相關文章!