最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

pythondjango訪問靜態(tài)文件出現(xiàn)404或500錯(cuò)誤

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 14:26:45
文檔

pythondjango訪問靜態(tài)文件出現(xiàn)404或500錯(cuò)誤

pythondjango訪問靜態(tài)文件出現(xiàn)404或500錯(cuò)誤:django static文件夾下面的內(nèi)容方法不了 出現(xiàn)404 500錯(cuò)誤需要查看自己的settings文件確保有一下內(nèi)容import os PROJECT_ROOT = os.path.dirname(__file__) DEBUG = True STATIC_URL = '/static/' STATICF
推薦度:
導(dǎo)讀pythondjango訪問靜態(tài)文件出現(xiàn)404或500錯(cuò)誤:django static文件夾下面的內(nèi)容方法不了 出現(xiàn)404 500錯(cuò)誤需要查看自己的settings文件確保有一下內(nèi)容import os PROJECT_ROOT = os.path.dirname(__file__) DEBUG = True STATIC_URL = '/static/' STATICF

django static文件夾下面的內(nèi)容方法不了 出現(xiàn)404 500錯(cuò)誤

需要查看自己的settings文件確保有一下內(nèi)容

import os
PROJECT_ROOT = os.path.dirname(__file__)

DEBUG = True

STATIC_URL = '/static/'

STATICFILES_DIRS = (

 os.path.join(PROJECT_ROOT, 'static'),
)

STATICFILES_FINDERS = (
 'django.contrib.staticfiles.finders.FileSystemFinder',
 'django.contrib.staticfiles.finders.AppDirectoriesFinder',
)

如果項(xiàng)目是使用eclipse啟動(dòng)的django工程 settings文件中的DEBUG 值要等于True 靜態(tài)文件才能訪問?這一點(diǎn)不太明白

如果需要部署到web站點(diǎn)上需要在apache中配置靜態(tài)文件映射

<VirtualHost *:80>
 ServerName www.mydjangosite.com
 ServerAlias mydjangosite.com
 ServerAdmin fake@mydjangosite.com

 DocumentRoot /path/to/mydjangosite
 <Directory /path/to/mydjangosite>
 Options FollowSymLinks
 AllowOverride None
 Order allow,deny
 allow from all
 </Directory>

 Alias /static/ /path/to/mydjangosite/static/
 <Directory /path/to/mydjangosite/static>
 Order allow,deny
 allow from all
 </Directory>

 # The following installs the Django WSGI app
 WSGIDaemonProcess www.mydjangosite.com processes=2 threads=15 display-name=%{GROUP}
 WSGIProcessGroup www.mydjangosite.com
 WSGIScriptAlias / /path/to/mydjangosite/wsgi.py

</VirtualHost>

感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

更多python django 訪問靜態(tài)文件出現(xiàn)404或500錯(cuò)誤相關(guān)文章請(qǐng)關(guān)注PHP中文網(wǎng)!

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

pythondjango訪問靜態(tài)文件出現(xiàn)404或500錯(cuò)誤

pythondjango訪問靜態(tài)文件出現(xiàn)404或500錯(cuò)誤:django static文件夾下面的內(nèi)容方法不了 出現(xiàn)404 500錯(cuò)誤需要查看自己的settings文件確保有一下內(nèi)容import os PROJECT_ROOT = os.path.dirname(__file__) DEBUG = True STATIC_URL = '/static/' STATICF
推薦度:
標(biāo)簽: 錯(cuò)誤 500 python
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top