Mobile app version of vmapp.org
Login or Join
Caterina187

: What type of server is using Django/Python? .htaccess is compatible? I was wondering what type of server is using python & django because i don't know if can i use an .htaccess file and

@Caterina187

Posted in: #Django #Htaccess #Python #Server

I was wondering what type of server is using python & django because i don't know if can i use an .htaccess file and if there is something similar.

Thanks.

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Caterina187

2 Comments

Sorted by latest first Latest Oldest Best

 

@Barnes591

Python and Django can run on Apache so you can use an .htaccess file on that setup. It also runs on several other server setups which have support for .htaccess-like functions.

In short, you're good...go with it.

10% popularity Vote Up Vote Down


 

@Frith620

Apache is the one who uses .htaccess files. It is a modular server with many default modules plus ones you can install yourself.

If you want to use Python then you need the mod_python module. Depending on your installation, it may be there or not as a default module.

Django is a framework which depends on Python and a database which is often MySQL but can be Postgres or Oracle according to the installation docs.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme