Post marked as solved
Click to stop watching this thread.
You have stopped watching this post. Click to start watching again.
Post marked as solved with 2 replies, 0 views
I found what is the cause. The problem is Case Sensitive in my cent os.
"http://localhost/documentation/SlothCreator" requests /data/documentation/SlothCreator.json, but the file name is /data/documentation/slothcreator.json.
So I added follows to the .htaccess.
RewriteRule /data/documentation/SlothCreator.json /data/documentation/slothcreator.json
then It works well.