RewriteRule checking file in rewriten file path exists. - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T06:49:20Zhttp://stackoverflow.com/feeds/question/470880http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/470880/rewriterule-checking-file-in-rewriten-file-path-exists0RewriteRule checking file in rewriten file path exists.Pim Jager2009-01-22T21:31:22Z2009-07-21T09:34:10Z
<p>How can you use ModRewrite to check if a cache file exists, and if it does, rewrite to the cache file and otherwise rewrite to a dynamic file. </p>
<p>For example I have the following folder structure:</p>
<pre>
pages.php
cache/
pages/
1.html
2.html
textToo.html
etc.
</pre>
<p>How would you setup the RewriteRules for this so request can be send like this:</p>
<pre>
example.com/pages/1
</pre>
<p>And if the cache file exists rewrite tot the cache file, and if the cache file does not exists, rewrite to pages.php?p=1</p>
<p>It should be something like this: (note that this does not work, otherwise I would not have asked this)</p>
<pre>
RewriteRule ^pages/([^/\.]+) cache/pages/$1.html [NC,QSA]
RewriteCond %{REQUEST_FILENAME} -f [NC,OR]
RewriteCond %{REQUEST_FILENAME} -d [NC]
RewriteRule cache/pages/([^/\.]+).html pages.php?p=$1 [NC,QSA,L]
</pre>
<p>I can off coarse do this using PHP but I thought it had to be possible using mod_rewrite.</p>
http://stackoverflow.com/questions/470880/rewriterule-checking-file-in-rewriten-file-path-exists/471994#4719942Answer by Sean Bright for RewriteRule checking file in rewriten file path exists.Sean Bright2009-01-23T05:31:01Z2009-01-23T05:38:46Z<pre><code>RewriteRule ^pages/([^/\.]+) cache/pages/$1.html [NC,QSA]
# At this point, we would have already re-written pages/4 to cache/pages/4.html
RewriteCond %{REQUEST_FILENAME} !-f
# If the above RewriteCond succeeded, we don't have a cache, so rewrite to
# the pages.php URI, otherwise we fall off the end and go with the
# cache/pages/4.html
RewriteRule ^cache/pages/([^/\.]+).html pages.php?p=$1 [NC,QSA,L]
</code></pre>
<p>Turning off MultiViews is crucial (if you have them enabled) as well.</p>
<pre><code>Options -MultiViews
</code></pre>
<p>Otherwise the initial request (/pages/...) will get automatically converted to /pages.php before mod_rewrite kicks in. You can also just rename pages.php to something else (and update the last rewrite rule as well) to avoid the MultiViews conflict.</p>
<p>Edit: I initially included <code>RewriteCond ... !-d</code> but it is extraneous.</p>
http://stackoverflow.com/questions/470880/rewriterule-checking-file-in-rewriten-file-path-exists/472417#4724170Answer by Gumbo for RewriteRule checking file in rewriten file path exists.Gumbo2009-01-23T10:06:02Z2009-01-23T10:06:02Z<p>Another approach would be to first look if there is a chached representation available:</p>
<pre><code>RewriteCond %{DOCUMENT_ROOT}/cache/$0 -f
RewriteRule ^pages/[^/\.]+$ cache/$0.html [L,QSA]
RewriteRule ^pages/([^/\.]+)$ pages.php?p=$1 [L,QSA]
</code></pre>
http://stackoverflow.com/questions/470880/rewriterule-checking-file-in-rewriten-file-path-exists/1158174#11581740Answer by rediref for RewriteRule checking file in rewriten file path exists.rediref2009-07-21T09:34:10Z2009-07-21T09:34:10Z<p>i didnt get your requirements</p>