I am using Lighttpd and Django. I have configured my Lighttpd server to pass all the requests ending with ".psp" extension to Django.
My startup page is a page served through Django, which is accessed as "http://192.168.1.198/home.psp". I want to enable the user to browse this page without writing "home.psp" explicitly in the url i.e. using "http://192.168.1.198"
Is this possible?
Thanks for any help in advance.
I solved the problem myself. Here is what I did:
I had to add a statement inside
url.rewrite-once
block of lighttpd's configuration file like:Apart from this, I added the following line in my urls.py:
Hope this helps someone in the future. Thanks everybody for your replies above. Cheers!