10
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Laravelのrewriteあれこれ

Posted at

###おしりの/処理

laravelでは、おしりに/があると、/がないURLにrewriteされる。それは、public直下の.htaccessによる。

RewriteRule ^(.*)/$ /$1 [L,R=301]

/$で、おしりが/で終わってたら、リクエスとされたディレクトリ/にrewriteされる。
$1には、()内のマッチしたものが入る。

###publicの処理

あるサーバで、実であれ仮想であれ、Document Rootをpublicに設定できる場合は何も問題はない。
ただ、public_html等に、Laravelフォルダを作らなければならない時もある。そんな時は、URLが、

http://localhost/laravel/public

となる。せめて

http://localhost/laravel

としたい。そんなときは、Laravelフォルダの直下に、.htaccessを作って、

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

などとする。

10
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
10
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?