I’m currently migrating a CodeIgniter website to a CloudPanel droplet. On that website, I have added two rewrite rules in the standard CI .htaccess file in the public folder:
RewriteRule ^css/(.*)\.[0-9]+\.css css/$1.css [L]
RewriteRule ^js/(.*)\.[0-9]+\.js js/$1.js [L]
The purpose of this is to give the css and js assets a timestamp to force browsers to updated cached assets if there are new versions.
This works well both on the old server and on my localhost server, but on the CloudPanel domain the files are not found.
If I manually write the address in the browser and remove the timestamp, I find the files.
I’ve seen from other threads here that I might have to use some console commands to change the apache settings to allow rewriting urls. But I am wondering if there is a setting in CloudPanel that I should be using.
Is there a setting in CloudPanel I need to change to allow rewrite rules in .htaccess?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hi there @thomasstorfjord,
The
.htaccess
file works only with Apache webserver, however CloudPanel comes with Nginx rather than Apache.You would need to convert your
.htaccess
rule to Nginx rule and add the new rule to your Nginx server block.For more information you could take a look at this article here:
https://www.nginx.com/blog/converting-apache-to-nginx-rewrite-rules/
Hope that this helps. Regards, Bobby