Mod-Rewrite Problems (Apache) with / slashes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T00:55:52Z http://stackoverflow.com/feeds/question/1011439 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1011439/mod-rewrite-problems-apache-with-slashes 0 Mod-Rewrite Problems (Apache) with / slashes Chris Cooper 2009-06-18T08:21:21Z 2009-06-19T07:26:02Z <p>Hey folks,</p> <p>I am betting on an obvious problem here I am not seeing.</p> <p>Here's the important bits for those of you familiar with Mod-Rewrite</p> <p>.htaccess file with mod-rewrite rules exists here: <a href="http://www.thedomain.com/.htaccess" rel="nofollow">http://www.thedomain.com/.htaccess</a> User goes to this URL: <a href="http://www.thedomain.com/test/blog" rel="nofollow">http://www.thedomain.com/test/blog</a> Mod-Rewrite rules should actually tell the server to access this URL: <a href="http://www.thedomain.com/index.php?page=blog" rel="nofollow">http://www.thedomain.com/index.php?page=blog</a></p> <p>.htaccess:</p> <pre><code>Options FollowSymLinks Options -MultiViews RewriteEngine on RewriteRule ^test/([^/.]+)$ /index.php?page=$1 [L] </code></pre> <p>This combination of code/request does not work. If you're wondering about the code snippet ^test not being ^/test instead, it is because apparently this is a problem on GoDaddy, the code fails with the / after the ^ - this seems like it may be related to my problem, which I'll explain further... If I change the .htaccess code line:</p> <pre><code>RewriteRule ^test/([^/.]+)$ /index.php?page=$1 [L] </code></pre> <p>to</p> <pre><code>RewriteRule ^test([^/.]+)$ /index.php?page=$1 [L] </code></pre> <p>(just removing the / here: ^test/([^/.]+) )</p> <p>The code works when the requested URL is changed to accomodate (remove the slash; <a href="http://www.thedomain.com/" rel="nofollow">http://www.thedomain.com/</a><strong>testblog</strong>) as the user views the proper index.php?page=blog server response. It seems to me I cannot use any slashes within the darn match side of the RewriteRule. What gives?</p> <p><strong>Update:</strong> If at all relevent, this .htaccess file and the relevant files to the question all exist in a subdirectory off of the GoDaddy server that is hosting this although the domain points to the subdirectory as the root. Not sure if this is relevant.</p> <p><strong>Update:</strong> This server (at the server root) is actually running wordpress with pretty URLs enabled and they work perfectly fine. I assume wordpress uses mod-rewrite to make crazy urls like thedomain.com/2008/11/15/the-article-title.html work...?</p> <p>Thanks so much.</p> http://stackoverflow.com/questions/1011439/mod-rewrite-problems-apache-with-slashes/1011457#1011457 1 Answer by Matijs for Mod-Rewrite Problems (Apache) with / slashes Matijs 2009-06-18T08:27:48Z 2009-06-18T08:27:48Z <p>Is <a href="http://httpd.apache.org/docs/2.2/mod/mod%5Frewrite.html#rewritebase" rel="nofollow" title="RewriteBase">RewriteBase</a> what you're looking for?</p> http://stackoverflow.com/questions/1011439/mod-rewrite-problems-apache-with-slashes/1011471#1011471 1 Answer by Josh for Mod-Rewrite Problems (Apache) with / slashes Josh 2009-06-18T08:30:07Z 2009-06-18T08:59:42Z <p>there is a nice test utility for windows here</p> <p><a href="http://www.helicontech.com/download-isapi_rewrite.htm" rel="nofollow">http://www.helicontech.com/download-isapi_rewrite.htm</a></p> <p>try changing your code to:</p> <pre><code>^/test/([^/]+)$ /index.php?page=$1 [L] </code></pre> <p>or without slashes</p> <pre><code>^test[^a-z]+([a-z]*)$ /index.php?page=$1 [L] </code></pre> http://stackoverflow.com/questions/1011439/mod-rewrite-problems-apache-with-slashes/1011644#1011644 0 Answer by Gumbo for Mod-Rewrite Problems (Apache) with / slashes Gumbo 2009-06-18T09:13:13Z 2009-06-18T09:13:13Z <blockquote> <p>If you're wondering about the code snippet ^test not being ^/test instead, it is because apparently this is a problem on GoDaddy, the code fails with the / after the ^ […]</p> </blockquote> <p>That’s not odd but necessary:</p> <blockquote> <p><strong><a href="http://httpd.apache.org/docs/2.2/mod/mod%5Frewrite.html#rewriterule" rel="nofollow">Per-directory Rewrites</a></strong></p> <p>When using the rewrite engine in <code>.htaccess</code> files the per-directory prefix (which always is the same for a specific directory) is automatically <em>removed</em> for the pattern matching and automatically <em>added</em> after the substitution has been done.</p> </blockquote> <p>And that <em>per-directory prefix</em> is for a .htaccess file in the document root (<code>/.htaccess</code>) the URL path root (<code>/</code>). Thus patterns with the <code>^</code> must be written without that <em>per-directory prefix</em> <code>/</code>.</p> <p>On the same way the <em>substitution</em> is handled. After a rule is applied, the <em>per-directory prefix</em> is added to the substituion. So try this rule:</p> <pre><code>RewriteRule ^test/([^/.]+)$ index.php?page=$1 [L] </code></pre> http://stackoverflow.com/questions/1011439/mod-rewrite-problems-apache-with-slashes/1011695#1011695 0 Answer by scraimer for Mod-Rewrite Problems (Apache) with / slashes scraimer 2009-06-18T09:22:42Z 2009-06-18T09:22:42Z <p>OK, first off, I think that the GoDaddy apache server simply has some of the options turned off. I think that if they don't have an <a href="http://httpd.apache.org/docs/2.2/mod/core.html#AllowOverride" rel="nofollow"><code>AllowOverride FileInfo</code></a> in their configuration, <code>RewriteRule</code> won't work so well, or at all.</p> <p>Which means its surprising that the URL <code>http://www.thedomain.com/testblog</code> works at all, and gets re-written. So I guess I'm a little confused.</p> <p>Here's an idea: Try creating a directory named <code>test</code>, and put the <code>.htaccess</code> file in there! It would look like this:</p> <pre><code>Options FollowSymLinks RewriteEngine on RewriteRule ^([^/]+)$ /index.php?page=$1 [L] </code></pre> <p>OK, another idea: Use <code>RewriteCond</code>. Maybe you can check the request URI directly, like this:</p> <pre><code>Options FollowSymLinks RewriteEngine on RewriteCond %{REQUEST_URI} ^/test/([^/]+) RewriteRule . /index.php?page=%1 [L] </code></pre> <p>Last idea: maybe your browser sees the URL <code>http://www.thedomain.com/test/blog</code> and thinks it's a directory, and adds a slash? So the URL is sends is <code>http://www.thedomain.com/test/blog/</code>. In that case, the REGEX won't match unless you allow for a trailing slash:</p> <pre><code>RewriteRule ^test/([^/.]+)/?$ /index.php?page=$1 [L] </code></pre> <p>Whoops. Sorry for gushing - there's just some many things that can go wrong in an HTTP request that goes through rewriting, and as many ways to try and overcome the problems :-)</p> http://stackoverflow.com/questions/1011439/mod-rewrite-problems-apache-with-slashes/1016745#1016745 0 Answer by Chris Cooper for Mod-Rewrite Problems (Apache) with / slashes Chris Cooper 2009-06-19T07:26:02Z 2009-06-19T07:26:02Z <p>I was unable to find a solid method around this problem on GoDaddy; for whatever reason I could not have slashes within the URL that was attempting to be rewritten aside from the base (<a href="http://www.somedomain.com/testingthis" rel="nofollow">http://www.somedomain.com/testingthis</a> would work but <a href="http://www.somedomain.com/testing/this" rel="nofollow">http://www.somedomain.com/testing/this</a> died). </p> <p>I ended up instead using the Wordpress .htaccess to send all non-existant file/directory requests back to my index.php. I then used the $_SERVER['REQUEST_URI'] var with pathinfo() to parse the URL and then direct what content to load from the parsing. This works well, is fast, and is probably the same method Wordpress uses.</p> <p>Thanks for the attemps!</p>