0
0

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 1 year has passed since last update.

Windows XAMPP htdocs 別の場所のフォルダを参照

Posted at

XAMPPのhtdocs内に実際のフォルダを作成しないで、別の場所のフォルダを参照させる方法

c:\xamppに、XAMPPがインストールされている状態
c:\dev\linktestフォルダがある状態

コマンドプロンプトのアイコンを右クリックして、管理者権限で起動する

mklink /D c:\xampp\htdocs\linktest c:\dev\linktest

/Dオプションは、ディレクトリ参照リンクのD

c:\xampp\htdocs内に、c:\dev\linktestフォルダへのリンクが作成される
これをシンボリックリンクという

ブラウザで、http://localhost/linktest/を表示すると、
c:\dev\linktestフォルダ内の内容が表示される

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?