mod_rewrite, .htaccess connecting to mysql database - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T17:33:35Z http://stackoverflow.com/feeds/question/451214 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/451214/modrewrite-htaccess-connecting-to-mysql-database 3 mod_rewrite, .htaccess connecting to mysql database Simon 2009-01-16T17:08:55Z 2009-01-16T23:57:43Z <p>I would like mod_rewrite in an .htaccess file to link to a mysql database to provide me with mapping information.</p> <p>Specifically, I am using a single code base to host multiple sites so..if a user requests an image, for example: <a href="http://www.example.com/images/car.jpg" rel="nofollow">http://www.example.com/images/car.jpg</a></p> <p>this is going to hit my server and many other sites will also be hitting that /images folder, so I need Apache to reply with: /home/example/pubic_html/images/7383/car.jpg</p> <p>Notice the injection of "7383" which is an example site id for that user.</p> <p>Basically, I want to map between example.com and 7383 using the mysql database and then get the correct file to the user.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/451214/modrewrite-htaccess-connecting-to-mysql-database/451232#451232 3 Answer by Gumbo for mod_rewrite, .htaccess connecting to mysql database Gumbo 2009-01-16T17:12:42Z 2009-01-16T17:12:42Z <p>You could use a script as a <a href="http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewritemap" rel="nofollow">rewrite map</a> to get the real path.</p> http://stackoverflow.com/questions/451214/modrewrite-htaccess-connecting-to-mysql-database/452479#452479 1 Answer by Simon for mod_rewrite, .htaccess connecting to mysql database Simon 2009-01-16T23:57:43Z 2009-01-16T23:57:43Z <p>RewriteMap is the correct Apache functionality to use. Thank you Gumbo.</p> <p>Somethings to note as I worked through this:</p> <ul> <li>RewriteMap goes in your Apache config instead of in the .htaccess file</li> <li>I wrote a script to build a mapping text file that will perform the mapping that I had above. It basically dumps from the database whatever is necessary -- since mine does not change every minute, I can just run a periodic dump into this text file whenever mapping is added or changed.</li> </ul> <p>Works like a champ. Thanks Apache for this wonderful tool.</p>