Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Clean links to PHP-generated JavaScript and CSS

Background: When generating HTML content with PHP or any such thing, it is possible to encapsulate links to JavaScript and CSS inside tags without actually having to include the CSS and JavaScript "in-line" with the rest of the content. All you have to do is create a link to the file.

Example: {script type="text/javascript" src="./js/fooscript.js"}{/script}

Question: The above approach does not work, however, if your PHP needs to dynamically generate some or all of your JavaScript code. Is there a way to have a clean "one-line" link as above, but still use dynamically-generated JavaScript?

Obviously, one way to do it is to have PHP auto-generate the JavaScript and write that to a file; however that approach is undesirable for various reasons. I am wondering if there is an alternate trick to doing this that I have not thought of yet.

like image 345
dreftymac Avatar asked Dec 21 '25 02:12

dreftymac


1 Answers

Put an .htaccess file in your /js/ folder and add the .js extension to PHP, like this:

AddHandler application/x-httpd-php .js

In other words, have PHP parse all .js files as PHP files. So your scripts would really be PHP files on the server-side that output JavaScript. Do the same for stylesheets, only use the .css extension, obviously.

Note: I've never tried doing this in a separate .htaccess file. If it doesn't work, just put it into your global Apache config.

like image 152
Sasha Chedygov Avatar answered Dec 22 '25 16:12

Sasha Chedygov



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!