Is there a way to differentiate resource requesters via PHP or .htaccess
P粉821808309
P粉821808309 2024-04-04 08:37:32
0
1
385

Is there a way to differentiate between the browsers loading the webpage that requested the resource (e.g., <script src="https://www.example.com/requested_script.js"></script> Directly (without referrer) to the resource being requested by using PHP or .htaccess and entering the URL directly in the URL bar?

I'm trying to protect JavaScript files from R&D (theft and copying) by instructing the server to serve up a fake (i.e. fake) JavaScript file when a potential thief attempts to view it, directly reading the file content/source code, while leaving the real JavaScript file Provided to the browser as a legal resource.

P粉821808309
P粉821808309

reply all(1)
P粉396248578

Maybe add a hash value as the end of the redirect, only one will be real.

is similar to

sssccc

To make it harder to read, use an obfuscator, for example:

https://closure-compiler.appspot.com/home

It will also reduce the file size.

However, if your main concern is running "proprietary" operations in Javascript, you'd be better off moving those operations to the server side and then sending the final calculations/values ​​to the client so no one knows how you Get them.

Unfortunately, any additional information is always visible to the client because that's how the browser reads it.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!