View Single Post
Old 05-31-2019, 08:47 PM  
awxm
Confirmed User
 
Industry Role:
Join Date: Aug 2009
Posts: 819
Ok got it working. Heres the nginx rewrite if anyone needs it.

Code:
location / { 
	rewrite ^/([a-zA-Z0-9\-\_]+)[/]*$ /index.php?cmd=$1 last; 
	rewrite ^/([a-zA-Z0-9\-\_]+)[/]*([a-zA-Z0-9\-\_]+)[/]*$ /index.php?cmd=$1&arg1=$2 last; 
	rewrite ^/([a-zA-Z0-9\-\_]+)[/]*([a-zA-Z0-9\-\_]+)[/]*([a-zA-Z0-9\-\_]+)[/]*$ /index.php?cmd=$1&arg1=$2&arg2=$3 last; 
	rewrite ^/([a-zA-Z0-9\-\_]+)[/]*([a-zA-Z0-9\-\_]+)[/]*([a-zA-Z0-9\-\_]+)[/]*([a-zA-Z0-9\-\_]+)[/]*$ /index.php?cmd=$1&arg1=$2&arg2=$3&arg3=$4 last; 
}
__________________
.
awxm is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote