Can I login to a protected directory via a link?

2019-06-14 04:41发布

I want to create links to pages and content that are in protected directories. I didn't program the protected directories I set them up from the host admin page.

I want to be able to give links to user that will take them to page and login as well.

Also if there is a way I want to be able to embed content from the protected directories in other places and not have the password box shop up in order to display the content.

I am using PHP4

Thanks!

标签: php php4
3条回答
别忘想泡老子
2楼-- · 2019-06-14 05:11

Depending on the authentication, you can use a URL like this:

http://username:password@yoursite.com/protected_dir

I know that works for simple protection via .htaccess. However, keep in mind that you will be sending that link with the password in clear text, and may be inadvertently seen by the wrong people.

查看更多
做个烂人
3楼-- · 2019-06-14 05:24

...I want to be able to embed content from the protected directories in other places and not have the password box shop up in order to display the content.

As a direct link this

http://username:password@yoursite.com/protected_dir/file.html

does not work, but only when attempting to see it with IE browser I think if you want to embed contents via PHP you might use this:

file_get_contents("http://username:password@yoursite.com/protected_dir/file.html")

If you try this one, plz let me know, i'm interested too.

查看更多
Deceive 欺骗
4楼-- · 2019-06-14 05:34

Also if there is a way I want to be able to embed content from the protected directories in other places and not have the password box shop up in order to display the content.

Read it with fsockopen. Here's an example od fsockopen with basic authentication http://pl.php.net/manual/en/function.fsockopen.php#32830

查看更多
登录 后发表回答