hi  Django project structure is clearly understandable but I want CURD 
Operations mini-project  by using Django project



On Tuesday, September 17, 2019 at 9:46:31 PM UTC+5:30, Martin Jaan Leesment 
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 django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/9892f659-d841-41d5-a65e-6216a6b9fae7%40googlegroups.com.

Reply via email to