Saturday, 4 March 2017

debugging - How to debug htaccess rewrite script

I was wondering how to create and debug this kind of script that can become a bit of headache if you are not used to write them (like me).



Do you use tool to create them?



Any tips to debug what's going on instead of just create a local structure and see what's happening in the browser?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...