cakephp doesn't work url-rewriting on Ubuntu

后端 未结 3 2304
深忆病人
深忆病人 2021-02-20 03:00

all. This time I try cakephp, but I have got \"URL rewriting is not properly configured on your server. 1) Help me configure it 2) I don\'t / can\'t use URL rewriting\". I could

3条回答
  •  名媛妹妹
    2021-02-20 03:29

    This could be a file permissions problem. Try recursively setting permissions to 777 for both the webroot and tmp directories. The tmp directory might require sudo.

    sudo chmod -R 777 /path/to/app/webroot/
    sudo chmod -R 777 /path/to/app/tmp/
    

提交回复
热议问题