简体   繁体   中英

Access to another file from index.php

I have problem with access to file. I have folders and files:

public/index.php

app/doit.php

When I use header('Location: ../app/doit.php'); im my index.php, I have error: Object not found!

My site starts with public/index.php

How to have access to doit.php?

header('Location: ../app/doit.php');

it's mean redirect to http://yourhost/public/app/doit.php

to redirect using this code, you must moving app folder to inside public folder

folder structure must be like this public/app/doit.php

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM