View Single Post
  #1  
Old 31st January 2016, 12:19
DenSouLew DenSouLew is offline
Member
 
Join Date: Feb 2011
P2P
Posts: 2
Default TSUE 2.2 and NGINX
Hi there guys/gals,

Im trying to use tsue with nginx and i havent managed to make it working most probably because of the rewrite rules. The issue is that when i try to login it doesnt going to the homepage and im stuck there.

the .htaccess file has those

Code:
<IfModule mod_rewrite.c>
	RewriteEngine On
	RewriteCond %{REQUEST_FILENAME} -f [OR]
	RewriteCond %{REQUEST_FILENAME} -l [OR]
	RewriteCond %{REQUEST_FILENAME} -d
	RewriteRule ^.*$ - [NC,L]
	RewriteRule ^(ajax/|data/|js/|styles/|tsue_install/|favicon\.ico|robots\.txt) - [NC,L]
	RewriteRule ^.*$ index.php?p=notfound [NC,L]
</IfModule>

If someone has managed to get it working with nginx i would really appreciate it to share his/her nginx.conf or the location rewrite rules.

Thanks :)
Reply With Quote