Apache 對映磁碟路徑,啟動靜態資源以實現動靜分離
阿新 • • 發佈:2019-02-04
1.安裝Apache伺服器
2.修改配置httpd.conf檔案
Define SRVROOT "D:/TomCat/Apache24"
ServerRoot "${SRVROOT}"
改為自己的路徑
3.搜尋Alias在<IfModule alias_module>中加入下段
<IfModule alias_module>
#在這個標籤加入 下段
Alias /resource C:/test/resource
</IfModule alias_module>
4.這段
2.上文4這段改成這個 <Directory />
#AllowOverride none預設的配置
#Require all denied預設的配置
#允許指向外部的目錄進行訪問
Options Indexes FollowSymLinks
AllowOverride None
#Require all denied
#跨域問題2(意思是對這個域名的資源進行訪問時,新增一個頭資訊)
Header set Access-Control-Allow-Origin *
</Directory>
由於文件格式沒有整理,所以附上我的httpd.conf讓大家參考
- <Directory />
- Options FollowSymLinks
- AllowOverride None
- Order deny,allow
- Deny from all
- </Directory>
- <Directory />
- #允許指向外部的目錄進行訪問
- #AllowOverride none
- #Require all denied
-
Options Indexes FollowSymLinks
- AllowOverride None
- </Directory>
2.上文4這段改成這個 <Directory />
#AllowOverride none預設的配置
#Require all denied預設的配置
#允許指向外部的目錄進行訪問
Options Indexes FollowSymLinks
AllowOverride None
#Require all denied
#跨域問題2(意思是對這個域名的資源進行訪問時,新增一個頭資訊)
Header set Access-Control-Allow-Origin *
</Directory>