Hi Amit,

2009/12/9 Amit Sethi <amit.pureene...@gmail.com>

> Hi all , I need some help understanding the mod rewrite module of apache .
> What I wished to do want that i had a comments folder by the name of
> /comments/ . Now i run a django project on /sees and i want all the call to
> /comments/ be redirected to /sees/comments and than be handled by the wsgi
> file but the rewriting is not happening is it possible to rewrite url and
> than route it through wsgi script
>

Something like this?

RewriteEngine On
RewriteBase /
RewriteRule ^comments/ ^sees/comments/

Cheers,

Thomas Sutton

--

You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.


Reply via email to