Block or mark as spam. I think it will work. Give it a try On Sat, 28 Sep, 2019, 7:30 PM Anike Sadia, <[email protected]> wrote:
> Hi pls how to leave this group > > > On Tue, 17 Sep 2019 at 17:16, Martin Jaan Leesment <[email protected]> > wrote: > >> Hey >> >> I'm new to serving Django website on a shared server as well as using >> fastcgi and .htaccess so this might be a basic question. Namely I'm having >> difficulties serving static content. I've tried playing with htaccess >> rules, but no luck yet. My project structure: >> >> myproject/ >> ├── myapp >> │ ├── admin.py >> │ ├── apps.py >> │ ├── models.py >> │ ├── static >> │ │ └── myapp >> │ │ ├── css >> │ │ │ ├── bootstrap.min.css >> │ │ │ ├── bootstrap.min.min_myproject.css >> │ │ │ └── proj.css >> │ │ ├── fonts >> │ │ ├── images >> │ │ │ ├── logo.png >> │ │ └── scripts >> │ │ ├── bootstrap.bundle.min.js >> │ │ └── bootstrap.min.js >> │ ├── templates >> │ │ └── myapp >> │ │ ├── base.html >> │ │ ├── footer.html >> │ │ ├── header.html >> │ │ ├── index.html >> │ ├── tests.py >> │ ├── urls.py >> │ └── views.py >> ├── manage.py >> ├── myproject >> │ ├── __init__.py >> │ ├── locale >> │ ├── media >> │ ├── settings >> │ │ ├── base.py >> │ │ ├── dev.py >> │ │ ├── __init__.py >> │ │ ├── prod.py >> │ ├── static >> │ ├── templates >> │ │ └── base.html >> │ ├── urls.py >> │ └── wsgi.py >> ├── requirements >> └── test.py >> >> My htaccess >> >> Options +ExecCGI >> AddHandler fcgid-script .fcgi >> RewriteEngine On >> RewriteRule ^(/static.*)$ /static//$1 [L] >> RewriteCond %{REQUEST_FILENAME} !-f >> RewriteRule ^(.*)$ cgi-bin/mydjangapp.fcgi/$1 [QSA,L] >> >> >> If anybody can help me figure out how to solve it, would really >> appreciate. >> >> Thanks! >> >> Best >> MJ >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Django users" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/django-users/80c1e98b-8a0a-482c-a20f-29b4c7afdcab%40googlegroups.com >> <https://groups.google.com/d/msgid/django-users/80c1e98b-8a0a-482c-a20f-29b4c7afdcab%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-users/CADi3MtsqOtuN%2BEuArMCZSJBuW-AYgvqDkDU4RsP3Y%2BF62SC_bQ%40mail.gmail.com > <https://groups.google.com/d/msgid/django-users/CADi3MtsqOtuN%2BEuArMCZSJBuW-AYgvqDkDU4RsP3Y%2BF62SC_bQ%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAGHZBzzeObUv0vLdoU4arPb8iYz1pGYSKEUSopC7nX7Fz_YAcw%40mail.gmail.com.

