mod_rewrite, .htaccess connecting to mysql database - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T17:33:35Zhttp://stackoverflow.com/feeds/question/451214http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/451214/modrewrite-htaccess-connecting-to-mysql-database3mod_rewrite, .htaccess connecting to mysql databaseSimon2009-01-16T17:08:55Z2009-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#4512323Answer by Gumbo for mod_rewrite, .htaccess connecting to mysql databaseGumbo2009-01-16T17:12:42Z2009-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#4524791Answer by Simon for mod_rewrite, .htaccess connecting to mysql databaseSimon2009-01-16T23:57:43Z2009-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>