Ugh, I spoke too soon. It works when the urls are like this:
http://example.com/install?step=1
But it does not work when the urls are like this:
http://example.com/dashboard/
http://example.com/profile/
Sometime it brings back 404 Not Found and other times it comes back with 500
Internal Error
Thanks for pointing me in the right direction. That last part gave me a
redirect loop error, so I changed it to this:
rewrite ^/(.*)$ /index.php?url=$1;
I applied it, loaded the site, restarted nginx, and loaded the site again.
It seems to work. Hopefully, my change is not just a fluke but will c
I have been trying to convert the following htaccess rules to nginx with no
luck.
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?url=$1 [QSA,L]
I've tried:
location / {
if (!-e $request_filename){
rew