Header Ads Widget

Mapging folder xampp

Cấu hình thư mục htdocs ngoài đường dẫn mặc định khi cài Xampp

Các bước cần thiết để chạy 1 code laravel

1. Cấu hình đường dẫn ảo

Truy cập vào file host trên window theo đường dẫn
C:\Windows\system32\drivers\etc.
Thêm dòng
127.0.0.1 lienvu.com

2. Cấu hình config trong xampp

D:\<path to your xampp installation>\apache\conf\extra\httpd-vhosts.conf 

 Bỏ dấu ## ở dòng
NameVirtualHost *:80 
Thêm cấu hình trỏ tới thư mục mới
<VirtualHost *:80>
    DocumentRoot "E:/xampp/htdocs/Git/lienvu.com"
    ServerName lienvu.com.local
    ServerAlias lienvu.com.local
    <Directory "E:/xampp/htdocs/Git/lienvu.com">
      Allow from all
      Order Deny,Allow
    </Directory>
</VirtualHost>


3. Xử lý lỗi 

Nếu xuất hiện lỗi "403 client denied by server configuration error" thì thhay đổi trong đường dẫn: path\apache\conf\httpd.conf
Từ:
<Directory />
    AllowOverride none
    Require all denied
</Directory>
Thành
<Directory />
    AllowOverride none
    Require all granted
</Directory>