Re: [semi OT] htaccess file question

2015-07-20 Thread jbv
Hello Matthias I have tried your suggestion in a new test directory and it seems to work : any url ending with .irev now triggers the corresponding script ending with .lc. Thanks for your help. jbv Hi jbv, try the following in your .htaccess file: RewriteEngine on RewriteRule ^(.*).irev$

[semi OT] htaccess file question

2015-07-19 Thread jbv
Hello list I have different apps used by clients that make requests to LC scripts on a server. All this stuff is a few years old and all scripts urls are in the .irev format. I would like to use instead new .lc scripts without having to rewrite, recompile and redistribute the apps. Can I use the

Re: [semi OT] htaccess file question

2015-07-19 Thread Mike Bonner
I think you can override the behavior using an htaccess so that your irev files use the new server. (assuming you can the system is set up to allow overrides) The problem is, knowing where the correct engine is located so that you can set up your htaccess to point to it. To find this out, I set

Re: [semi OT] htaccess file question

2015-07-19 Thread Matthias Rebbe | M-R-D
Hi jbv, try the following in your .htaccess file: RewriteEngine on RewriteRule ^(.*).irev$ $1.lc [L] Regards, Matthias Am 19.07.2015 um 14:21 schrieb j...@souslelogo.com: Hello list I have different apps used by clients that make requests to LC scripts on a server. All this stuff