active questions tagged mod-rewrite - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T11:08:13Zhttp://stackoverflow.com/feeds/tag/mod-rewritehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1943739/easy-modrewrite-so-ill-never-have-to-think-about-it-again2Easy mod_rewrite - So I'll never have to think about it againBen Shelock2009-12-22T01:45:41Z2009-12-22T02:09:00Z
<p><em>Not sure how you'll take this question but...</em></p>
<p>Whenever I try to make my URLs look <em>pretty</em> I always end up messing around for too long and it's simply not worth the trouble. But the end effect is good if it were a simple task.</p>
<p>So what I want to do is create a method which in the end would achive something like...</p>
<pre><code>index.php?do=user&username=MyUsername //This becomes...
/user/MyUsername //...that
index.php?do=page&pagename=customPage //And this becomes...
/page/customPage //...that
index.php?do=lots&where=happens&this=here //This also becomes...
/lots/happens/here //...that
index.php?do=this&and=that&that=this&and=some&more=too //And yes...
/this/that/this/some/more //This becomes this
</code></pre>
<p>So then I just make a nice .htacess file that I'll never have to look at again. Everything will be better in the world because we have pretty URLs and my head didn't hurt in the making.</p>
http://stackoverflow.com/questions/1942728/any-easy-noncluttering-way-to-set-up-mydomain-com-username-using-php0Any easy, noncluttering way to set up "mydomain.com/username" using PHP? Cyprus1062009-12-21T21:28:16Z2009-12-21T21:45:44Z
<p>Simply put, when a user wants people to be able to go to their profile, we want them to be able to just say go to <code>mydomain.com/username</code>. The real user page would be at something like <code>mydomain.com/users/page.php?id=1325</code> which doesn't really help users. </p>
<p>The problem: I've been doing PHP for some time, and have never had the need to do this. I don't have a clue where to even start? I wouldn't want to do something as naive as just creating actual folders with redirects in them or something.... </p>
<p>Can anybody tell me how to go about this in php? </p>
<p>Y'all are the greatest!</p>
http://stackoverflow.com/questions/1941388/why-does-this-rewriterule-cause-an-internal-server-error0Why does this RewriteRule cause an Internal Server Error?openfrog2009-12-21T17:15:29Z2009-12-21T18:06:50Z
<p>I call my site this way locally:</p>
<pre><code>http://localhost:80/mysite/de/layer1/layer2/module
</code></pre>
<p>In .htaccess I have:</p>
<pre><code>RewriteEngine on
RewriteRule !^((css|js|images)/.*)$ index.php%{REQUEST_URI} [L, NE]
</code></pre>
<p>I try to rewrite that into:</p>
<pre><code>http://localhost:80/mysite/index.php/de/layer1/layer2/module
</code></pre>
<p>Any idea what's wrong there?</p>
<p>EDIT: If I write only this, then there is no error:</p>
<pre><code>RewriteRule !^((css|js|images)/.*)$ index.php
</code></pre>
<p>But I think I <em>need</em> this %{REQUEST_URI} thing!!</p>
<p>My configuration: Mac OS X 10.6 Snow Leopard, MAMP with Apache, MySQL and PHP 5. In detail:</p>
<pre><code>Apache 2.0.63
MySQL 5.1.37
PHP 4.4.9 & 5.2.10
APC 3.0.19 & APC 3.1.2
eAccelerator 0.9.5.3
XCache 1.2.2
phpMyAdmin 2.11.9.5 & phpMyAdmin 3.2.0.1
Zend Optimizer 3.3.3
SQLiteManager 1.2.0
Freetype 2.3.9
t1lib 5.1.2
curl 7.19.5
jpeg 7
libpng-1.2.38
gd 2.0.34
libxml 2.7.3
libxslt 1.1.24
gettext 0.17
libidn 1.15
iconv 1.13
mcrypt 2.5.8
YAZ 3.0.47 & PHP/YAZ 1.0.14
</code></pre>
http://stackoverflow.com/questions/1555390/can-i-rewrite-from-subdomain-to-folder-avoiding-redirection0Can I rewrite from subdomain to folder avoiding redirection?Pavel2009-10-12T15:59:40Z2009-12-21T18:00:02Z
<p>I want my subdomain to point directly to a folder.
That is if an HTTP request is made to apple.example.com,
I want the response to be the contents of example.com/apple/index.html, but not a 301 error.
Is it possible?</p>
http://stackoverflow.com/questions/1941086/how-to-insert-an-index-php-into-every-url-using-htaccess0How to insert an "index.php" into every url using .htaccess?openfrog2009-12-21T16:25:55Z2009-12-21T16:39:41Z
<p>Example: My Site gets called like that:</p>
<pre><code>www.mysite.com/controller/method/parameter1/parameter2
</code></pre>
<p>Now, .htaccess needs to rewrite this URL into:</p>
<pre><code>www.mysite.com/index.php/controller/method/parameter1/parameter2
</code></pre>
<p>But the problem is: In case of an <strong>img</strong>, <strong>css</strong> or <strong>js</strong> directory, no redirection should happen.</p>
<p>How can I achieve this? What must I put to .htaccess? I just added this line but nothing happens:</p>
<pre><code>RewriteCond $1 !^(css|js|images)
</code></pre>
http://stackoverflow.com/questions/1938576/how-can-i-rewrite-urls-into-pretty-urls-using-modrewrite-and-php0How can I rewrite urls into pretty urls using mod_rewrite and php?oldfox2009-12-21T06:49:21Z2009-12-21T09:04:25Z
<p>Hello,
First off I wanna apologize for my ignorance but mod_rewrite and regex seems just a bit complicated for me and I need this done fairly quickly.
Basically what I'm trying to accomplish is the followings:</p>
<ol>
<li><p>Get rid of the <code>.php</code> extensions and get rid of the <em>index.php</em> - Basically when a user enters <em><a href="http://www.example.com/index.html" rel="nofollow">http://www.example.com/index.html</a></em> to be redirected to <em><a href="http://www.example.com/" rel="nofollow">http://www.example.com/</a></em> if he or she enters anything else than <code>.html</code> to get a 404 page not found.</p></li>
<li><p>I'm using IDs to grab the title from the DB. I would like to rewrite <em>/?id=1</em> (each number corresponds to a title in the DB) to <em>/title_name.html</em>.</p></li>
<li><p>If a user types in <em>/unknown_title</em> (the title is not found in the DB) or <em>…?bleh=hey</em> (or any other similar nonsense) to redirect him or her to <em>404.html</em>.</p></li>
</ol>
<p>I managed to make one of the three work but I don't know how to redirect the user any of the wanted cases. If anyone could help with this I would really appreciate it!
Thanks a lot in advance.</p>
http://stackoverflow.com/questions/1932198/htaccess-and-sessions-cookies0htaccess and sessions/cookiesPatrick2009-12-19T06:41:50Z2009-12-21T01:47:05Z
<p>Im having a problem with a htaccess rewrite rule on a site im working on.</p>
<p>Main Dir's htaccess:</p>
<pre><code>RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^website.com [NC]
RewriteRule ^(.*)$ http://www.website.com/$1 [R=301,L]
</code></pre>
<p>This site forces the user to www.website.com, even if they enter the address sans the www.</p>
<p>Now i have a wordpress install on a sub-directory, who's htaccess is this:</p>
<pre><code>RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</code></pre>
<p>The problem, is that whenever i try to access the wordpress directory, i get forced to a www-less address. If i go to www.website.com/blog, i get redirected to website.com/blog.</p>
<p>This of course is hurting my ability to work with sessions/cookies between the two. Anyone have any ideas why this is doing this, or how to fix it?</p>
http://stackoverflow.com/questions/1936651/modrewrite-causes-loss-of-stylesheet0mod_rewrite causes loss of stylesheetiMaster2009-12-20T19:08:52Z2009-12-20T19:15:31Z
<p>Hi there! I'm using mod_rewrite to clean up some of my URL's (duh) and I got it working. Sorta. It redirects to the correct page, but the stylesheet doesn't show up. Here's my code in .htaccess:</p>
<pre><code>RewriteEngine on
RewriteRule ^blog/([^/\.]+)/?$ post.php?page=$1 [L]
</code></pre>
<p>So what's going on? This is my first time working with mod_rewrite, by the way.</p>
http://stackoverflow.com/questions/1923186/code-igniter-subdirectory-question1Code Igniter SubDirectory QuestionAaron2009-12-17T17:07:59Z2009-12-19T15:19:35Z
<p>I am trying to let the "trac" directory and all of it's subdirectories be accessible through the url <a href="http://www.domain.com/trac/" rel="nofollow">http://www.domain.com/trac/</a></p>
<p>I am working with the codeginiter framework and my directory structure looks like</p>
<pre><code>.htaccess
index.php
system
trac
</code></pre>
<p>I can access the abov url fine, but the problem is the scripts and other files contained in trac subdirectories ie: trac/chrome/common/css/trac.css are not accessible and 404. Here is my .htaccess code. Please help.</p>
<pre><code>RewriteEngine On
RewriteRule ^$ index.php [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
RewriteCond $1 !^trac/
RewriteRule ^trac/(.*) /trac/$1
</code></pre>
http://stackoverflow.com/questions/1932501/should-we-check-slugs-passed-in-urls-or-just-use-the-id0Should we check slugs passed in URLS or just use the ID?Gian Paulo2009-12-19T09:54:38Z2009-12-19T10:08:39Z
<p>For example, if you access this url :<a href="http://stackoverflow.com/questions/286004/hidden-features-of-modrewrite">http://stackoverflow.com/questions/286004/hidden-features-of-modrewrite</a> and this one <a href="http://stackoverflow.com/questions/286004/hidden-features-of-modrewrite-PUT%5FANYTHING%5FYOU%5FWANT%5FHERE">http://stackoverflow.com/questions/286004/hidden-features-of-modrewrite-PUT_ANYTHING_YOU_WANT_HERE</a>. It goes right to the same page, and it seems Stackoverflow doesn't check for a valid slug (as wordpress calls it). </p>
http://stackoverflow.com/questions/1768300/friendly-urls-not-working-modrewrite-enabled-what-gives0Friendly urls not working - modrewrite enabled. what gives?Ryan Marshall2009-11-20T04:13:28Z2009-12-19T06:05:21Z
<p>Hi, I'm trying to install SilverStripe and during the installation, it returns an error saying that friendly links aren't working. However mod_rewrite is enabled and AllowOverride is set to All. I'm using CentOS Linux on a dedicated server with Webmin as the cp (yes, I know.. not my choice).</p>
http://stackoverflow.com/questions/1930845/having-trouble-searching-for-a-using-htacces0Having trouble searching for a '.' using htacces.ThisLanham2009-12-18T21:42:35Z2009-12-18T23:07:52Z
<p>I'm setting up a website that (ideally) would allow users to access other users' homepages with a url in the format "www.mysite.com/Page/ThisLanham" where 'ThisLanham' is the username. The username begins with a letter and can consists of any alphanumeric character along with an underscore, hyphen, or period.</p>
<p>So far, the redirection has worked perfectly when I ignore usage of the period character. The following code handles that request:</p>
<pre><code>RewriteRule ^page/([a-zA-Z][0-9a-zA-Z-_]*)/?$ Page/?un=$1 [NC,L]
</code></pre>
<p>However, I've tried a number of ways it check for the period as well, but all have resulted in a 500 Internal Server Error. Here are some my attempts:</p>
<pre><code>RewriteRule ^page/([a-zA-Z][0-9a-zA-Z-\_\\.]\*)/?$ Page/?un=$1 [NC,L]
RewriteRule ^page/([0-9a-zA-Z-\_\\.]\*)/?$ Page/?un=$1 [NC,L]
RewriteRule ^page/([a-zA-Z].\*)/?$ Page/?un=$1 [NC,L]
RewriteRule ^page/(.\*)/?$ Page/?un=$1 [NC,L]
</code></pre>
<p>My backup plan is to no longer allow users to include periods in their usernames, but I'd much rather find a solution. Any ideas???</p>
http://stackoverflow.com/questions/1878668/301-redirect-from-modrewrite-rewritemap-program0301 redirect from mod_rewrite RewriteMap programSridhar2009-12-10T04:37:11Z2009-12-18T21:38:42Z
<p>I'm using mod_rewrite's RewriteMap directive to process URLs. My RewriteMap program is a PHP script and everything is running fine. I'm able to map friendly URLs to PHP program + ID. Anyway, what I want to do is return a 301 redirect for certain URLs. For example, if someone puts in the URL:</p>
<p><code>http://www.example.com/directory1</code></p>
<p>Then I want my RewriteMap program to send a 301 redirect to</p>
<p><code>http://www.example.com/directory1/</code> (trailing slash)</p>
<p>Which will then go into my program again to be mapped onto a PHP script. I tried adding [R=301] at the end of my statement, but this just hangs the request. Here's the basic logic of my script:</p>
<pre>if ($input_url == "/directory1") {
echo "/directory1/ [R=301]\n"; // this doesn't work... just hangs
}
else if ($input_url == "/directory1/") {
echo "/myprogram.php?id=1\n";
}</pre>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1928043/how-to-tell-that-a-folder-has-been-deleted-permanently0How to tell that a folder has been deleted permanentlyamindzx2009-12-18T12:51:46Z2009-12-18T12:58:10Z
<p>Hello,</p>
<p>I have deleted a folder called forums from my website from 3 months. but in my Google Webmaster Tools it keeps saying that e.g. /forums/member.php?u=1092 is missing (404). is there any way to stop these messages and tell google that i am not going to re-upload it? is this going to affect on my SEO ranking? </p>
<p>I tried this code, but it's not working.</p>
<pre><code>RewriteRule ^forums/(.*)$ http://www.mysite.com [301, L]
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1926699/htaccess-rewriterule-so-user-views-site-com-folder-but-is-served-site-com-f1-f20.htaccess RewriteRule so user views site.com/folder but is served site.com/f1/f2/f3/folder/index.phptr0y2009-12-18T06:36:01Z2009-12-18T08:24:45Z
<p>I am trying to figure how to make a .htaccess RewriteRule so a visitor views:
site.com/folder </p>
<p>but is served </p>
<p>site.com/f1/f2/f3/folder/index.php</p>
<p>where f1/... is just an arbitrary line of folders.</p>
<p>Have kicked mod_rewrite a little, and got some really weird results, none I was going for though. Any help wrapping my head around this is greatly appreciated.</p>
http://stackoverflow.com/questions/1926857/avoiding-sub-directory-request-rewrites-with-apache-modrewrite0Avoiding sub-directory request rewrites with Apache mod_rewriteAnthony2009-12-18T07:31:58Z2009-12-18T07:44:46Z
<p>I want to a rewrite rule such that if a user goes to the URL <code>example.org/stuff/junk.jpg</code> the rule will process and end up at <code>re-writer.php</code> but if the user goes to <code>example.org/stuff/hackingisawesome/junk.jpg</code> the rule will not be triggered and they will get a standard 404 (or a page, if one should exist).</p>
<p>I can't tell, based on the environmental variables, if this is possible without some fairly fancy regex.</p>
<p>So does anyone know of either:</p>
<p>a) a way this is already built into the mod_rewrite syntax, or</p>
<p>b) a good, reliable way of handling this with regular expressions?</p>
<p>Links to documentation or tutorials welcome. I'm just feeling clueless on where to go next.</p>
<p>Oh, and I can imagine the ways I could simply have the script that the rule redirects to simply deliver the 404, but I'd rather only use the rule when the conditions exist.</p>
http://stackoverflow.com/questions/1524038/how-to-make-apache-rewrite-this-url0how to make apache rewrite this url ?asdfasdfasdf2009-10-06T07:13:53Z2009-12-18T07:00:02Z
<pre><code>www.mysite.com/directory1/directory2/cgi-bin/something.cgi/http/www.hello.com
</code></pre>
<p>into</p>
<pre><code>www.mysite.com/directory1/directory2/something/www.hello.com
</code></pre>
<p>OR</p>
<pre><code>www.mysite.com/www.hello.com
</code></pre>
http://stackoverflow.com/questions/1417680/using-htaccess-and-modrewrite-in-a-directory-not-root0Using .htaccess and mod_rewrite in a directory (not root)Calvin L2009-09-13T12:50:32Z2009-12-18T02:00:05Z
<p>I have a site that sits in a directory on a domain:</p>
<pre><code>http://www.example.com/site/
</code></pre>
<p>I also have an <code>.htaccess</code> file in <code>/site/</code> which has several rewrite rules. These rules work if all the files (including the .<code>htaccess</code> file) sit on the top-level of the domain: e.g., at www.example.com. </p>
<p>My <code>.htaccess</code> file looks something like this:</p>
<pre><code>RewriteEngine On
RewriteBase /
RewriteRule ^css/loader/\d+/([^/]+)(\?(.*))?$ /loader.php?t=css&c=$1
</code></pre>
<p>I need the rules to work within the directory but I can't seem to figure out it, can anyone please help?</p>
http://stackoverflow.com/questions/1925652/iis7-url-rewrite-mod-causes-unwanted-effects0IIS7 URL Rewrite Mod causes unwanted effectsVibhu2009-12-18T01:01:44Z2009-12-18T01:11:44Z
<p>This might be more a a regex question, but it is holding up our release. I'm unable to come up with a clever solution.</p>
<p>Basically, we want to rewrite www.oursite.com/Games.aspx?g=classic&m=etc to www.oursite.com/classic/?m=etc</p>
<p>The problem is that the rule itself (at least as generated by the URL Rewrite mod for IIS7) looks like this:</p>
<pre><code><rewrite>
<rules>
<rule name="RedirectUserFriendlyURL1" stopProcessing="true">
<match url="^Games\.aspx$" />
<conditions>
<add input="{REQUEST_METHOD}" negate="true" pattern="^POST$" />
<add input="{QUERY_STRING}" pattern="^g=([^=&amp;]+)$" />
</conditions>
<action type="Redirect" url="{C:1}" appendQueryString="false" redirectType="Permanent" />
</rule>
<rule name="RewriteUserFriendlyURL2" stopProcessing="true">
<match url="([^/]+)/?$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions>
<action type="Rewrite" url="Games.aspx?g={R:1}" />
</rule>
</rules>
</rewrite>
</code></pre>
<p>And thus, any other file that matches a similar pattern, for example Item/?id=23 is being rewritten. In addition, our script resource file is being rewritten, so the whole site throws 30 javascript errors. According to our specs, it's unacceptable in our specs to have the url www.oursite.com/Games/classic OR www.oursite.com/g/classic. Any solution? Manythanks!</p>
http://stackoverflow.com/questions/1922471/what-is-the-best-way-to-implement-a-controller-in-php0What is the best way to implement a controller in PHP?Skilldrick2009-12-17T15:23:00Z2009-12-17T15:34:09Z
<p>In the last couple of websites I made, I implemented a kind of MVC-style controller, I think.</p>
<p>I used <code>mod_rewrite</code> to send everything through index.php, so the url became a querystring.</p>
<p>It worked, but I'm wondering if it's a bit hacky, or just the accepted way of doing things. Is there a better way? I don't want a framework, I want to learn to do it myself.</p>
http://stackoverflow.com/questions/1672673/removing-php-with-modrewrite0Removing .php with mod_rewriteWim2009-11-04T09:41:11Z2009-12-17T11:57:55Z
<p>I want to rewrite all my URLs to hide the <code>.php</code> extension. A general rule that adds <code>.php</code> to <em>all</em> URLs obviously won't do, so I want this rule to be conditional on the fact that</p>
<ul>
<li>There is no file nor directory that matches the URL</li>
<li>After adding the <code>.php</code>, there <em>is</em> a match</li>
</ul>
<p>I've arrived at these rewriting rules:</p>
<pre><code>RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^(.*)$ $1.php [L]
</code></pre>
<p>The first two take care of checking whether the request can be satisfied without rewriting (so for images and other non-PHP content). With the third rule I'd like to check if adding <code>.php</code> would make the request valid (if not, we'll try something else further down the rewrite rules, or return 404).</p>
<p>The <code>RewriteCond %{REQUEST_FILENAME}.php -f</code> part never seems to match though. Any suggestions?</p>
<p><strong>EDIT</strong></p>
<p>The rewrite log is containing these entries:</p>
<pre><code>(4) RewriteCond: input='/contact' pattern='!-f' => matched
(4) RewriteCond: input='/contact' pattern='!-d' => matched
(4) RewriteCond: input='/contact.php' pattern='-f' => not-matched
</code></pre>
<p>I find it strange that it's trying to match /contact, and not /var/www/mysite/htdocs/contact (At least that's what I'd expect when reading the docs on <code>REQUEST_FILENAME</code>). Apparently <code>REQUEST_FILENAME</code> is only what I expect when there is an actual match?</p>
<p><strong>EDIT2</strong></p>
<p>Thanks to <a href="http://stackoverflow.com/users/181894/tomas">Thomas</a> for the answer: use <code>%{DOCUMENT_ROOT}</code> instead to manually compose the complete filename of the as yet unfound PHP file.</p>
<p>I've also thrown in an extra '/?' in the regexp to remove an optional / at the end of the URL, now all of /contact, /contact/ and /contact.php all refer to /contact.php:</p>
<pre><code>RewriteCond %{DOCUMENT_ROOT}$1 !-f
RewriteCond %{DOCUMENT_ROOT}$1 !-d
RewriteCond %{DOCUMENT_ROOT}$1\.php -f
RewriteRule ^(.*?)/?$ $1.php [L]
</code></pre>
<p><strong>UPDATE</strong></p>
<p>After a lot of cursing I also found out that it depends on whether the RewriteRules are inside a <Directory> directive or .htaccess file on the one hand, or in your <VirtualHost> directive or just in the main body of an httpd.conf on the other hand. When inside a <Directory>/.htaccess, <code>%{REQUEST_FILENAME}</code> does contain the path so my initial solution should work there. Outside of <Directory>, you need to add the <code>%{DOCUMENT_ROOT}</code> yourself.</p>
http://stackoverflow.com/questions/1919205/htaccess-file-help1htaccess file help?Karen2009-12-17T03:03:11Z2009-12-17T07:56:53Z
<p>I need to install Expression Engine on a subdomain for a client, and he is already running a php-based program on the main domain. Whoever set up the database program on the main domain apparently needs all .php extensions removed, but this makes it so that I can't even run the install for Expression Engine because of the rewrites in the htaccess file. I'm afraid to make changes to the htaccess file, obviously, for fear of screwing up the root domain's program - how can I change this so that the subdomain directory that I am working in does not have these rules applied, and not affect any of the current settings on the root domain?</p>
<pre><code>RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d [OR]
# This ensures that Apache will not mistake the URL mysite.com/archive/ for a request for the physical directory that stores files
RewriteCond %{REQUEST_URI} .+\/archive\/
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php
</code></pre>
http://stackoverflow.com/questions/1920023/content-fetching-using-htaccess0Content Fetching Using htaccessSaiful2009-12-17T07:21:59Z2009-12-17T07:55:19Z
<p>Let I have two domains named <strong>www.abc.example</strong> and <strong>www.xyz.example</strong> hosted in <strong>different servers</strong>.</p>
<p>I have a <strong>.htaccess</strong> file in the <strong>root directory</strong> of <em>www.abc.example</em> (i.e. <em>www.abc.example/.htaccess</em>)</p>
<p>What will be the .htaccess <strong>script</strong> if I want to load the contents of <em>www.xyz.example</em> when I request from <em>www.abc.example</em>.</p>
<p>As for example:
If I browse <strong>www.abc.example/test</strong> then it will display the content of <strong>www.xyz.example/test</strong> and so on without changing the <strong>host url</strong> (i.e. <em>www.abc.example</em>) in browser's <strong>addressbar</strong>.</p>
http://stackoverflow.com/questions/726107/how-to-make-this-work-rewritecond-envuniqueid-querystring0How to make this work? RewriteCond %{ENV:UNIQUE_ID} !%{QUERY_STRING}Laurian Gridinoc2009-04-07T14:45:32Z2009-12-16T21:34:35Z
<p>/foo/.htaccess does an internal redirect</p>
<pre><code>RewriteRule ^(.*)$ /bar/?%{ENV:UNIQUE_ID}
</code></pre>
<p>/bar/.htaccess needs to recognise that the request was NOT internal, the issue is that I cannot figure out how to make the comparision work</p>
<pre><code>RewriteCond %{ENV:UNIQUE_ID} !%{QUERY_STRING}
</code></pre>
<p>even a </p>
<pre><code>RewriteCond %{QUERY_STRING} %{QUERY_STRING}
</code></pre>
<p>won't match, I suppose there is a syntax issue in the right-hand of the expression, escaping % doesn't help.</p>
<p>I tested that the above both variable have the same value on an internal redirect as</p>
<pre><code>RewriteRule ^(.*)$ /test/%{QUERY_STRING}/%{ENV:UNIQUE_ID}
</code></pre>
<p>would show it.</p>
<p>The server is Apache/2.2.3</p>
<p>Thanks,
Laurian</p>
http://stackoverflow.com/questions/1915976/ending-with-period-using-mod-rewrite0Ending with period using Mod RewriteBrandon2009-12-16T16:44:25Z2009-12-16T20:58:04Z
<p>I would like to know how to allow periods at the end on my url's. Currently if I had the url:</p>
<p><a href="http://www.mydomain.com/Page/I.D.K" rel="nofollow">http://www.mydomain.com/Page/I.D.K</a>.</p>
<p>The page grabbing the information would return</p>
<p>Title: I.D.K (Without the ending period)</p>
<p>This also happens with other punctuation and it is effecting my pages displaying information wrongly. Thanks for looking, hope somebody knows the solution.</p>
<p>I am using the following in my htaccess file:</p>
<pre><code>RewriteRule ^([^/.]+)/?$ /index.php?Page=$1 [L]
RewriteRule ^([^/.]+)/([^/]+)/?$ /index.php?Page=$1&Level1=$2 [L]
RewriteRule ^([^/.]+)/([^/]+)/([^/]+)/?$ /index.php?Page=$1&Level1=$2&Level2=$3 [L]
RewriteRule ^([^/.]+)/([^/]+)/([^/]+)/([^/]+)/?$ /index.php?Page=$1&Level1=$2&Level2=$3&Level3=$4 [L]
</code></pre>
http://stackoverflow.com/questions/1917623/problem-with-htaccess-rewrite-rule0Problem with .htaccess, rewrite rule.unknown (google)2009-12-16T20:51:51Z2009-12-16T20:54:47Z
<p>Hey guys!</p>
<p>I have a page with a RewriteRule that makes my code: /?p=page will be rewritten like: abc.com/page, but I really want to have more sites under that, and at the moment I have this code in my .htaccess file.</p>
<p>Right now I have the code:</p>
<pre><code> <IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?p=$1 [QSA,L]
</IfModule>
</code></pre>
<p>So, instead, I build the page with more pages, such as abc.com/contact/david
instead of: abc.com/contact?person=david like I have now ...So how do I do? Guess it is pretty easy, but it would be great if someone wanted to explain it to me.</p>
http://stackoverflow.com/questions/1914693/rewritemap-not-matching0rewritemap not matchingadam2009-12-16T13:37:17Z2009-12-16T19:57:57Z
<p>Hi</p>
<p>I'm having trouble with my rewritemap not matching things:</p>
<pre><code>RewriteMap map txt:rewritemaps\map.txt [NC]
RewriteCond ${map:$1|NOT_FOUND} !NOT_FOUND [NC]
RewriteRule ^(.+)$ ${map:$1} [NC, R=301]
</code></pre>
<p>The map has about 4,500 entries, including:</p>
<pre><code>arctic /Destinations/Polar-Regions/The-Arctic.aspx
</code></pre>
<p>My RewriteLog, set to level 9, logs:</p>
<pre><code>init rewrite engine with requested uri /arctic
Htaccess process request C:\Program Files\ISAPI Rewrite\httpd.conf
Htaccess process request C:\Websites\Path\WebSite\.htaccess
[..]
applying pattern '^(.+)$' to uri 'arctic'
map lookup FAILED: map=map[txt] key=arctic
RewriteCond: input='NOT_FOUND' pattern='NOT_FOUND' =>
</code></pre>
<p>It works with pages not in the map - eg /Contact-Us.aspx, but not with stuff which should match (such as arctic). I've tried changing location of the [NC] flag, removing the RewriteCond and renaming the map file (just in case 'map' was a reserved keyword). No joy. It also doesn't seem to be a permissions problem.</p>
<p>FYI, I'm using ISAPIRewrite by Helicontech as I'm on IIS6.</p>
<p>Any help much appreciated!</p>
<p>Thanks, Adam</p>
http://stackoverflow.com/questions/1914607/apache-rewrite-condition-and-the-absence-of-characters0Apache rewrite condition and the absence of charactersGeorge Jempty2009-12-16T13:17:12Z2009-12-16T13:23:55Z
<p>We have the following mod_rewrite condition/rule but it is returning a 404 error on URLs that merely begin "i" (or "css" for that matter) if they do not equate precisely to our corresponding directories (/i /css etc.)</p>
<pre><code>RewriteEngine on
RewriteCond $1 !^(index\.php|robots\.txt|/(i|css|design_and_docs|js|test)/*)
RewriteRule ^(.*)$ /index.php/$1 [L]
</code></pre>
<p>This then disallows me from having a route/URI (using CodeIgniter but I don't think that matters) such as /itemid or /idcommand (just a couple I've had need of in the past week)</p>
<p>I can easily modify the RewriteCond as follows to test for a trailing slash but then a request for the /i directory, without the trailing slash, fails whereas it previously worked:</p>
<pre><code>RewriteCond $1 !^(index\.php|robots\.txt|/(i|css|design_and_docs|js|test)\//*)
</code></pre>
<p>With the trailing slash /i/ still resolves and that may be good enough for our purposes. But I'd really like /i to still resolve to the corresponding /i directory. So instead of just testing for a trailing slash at the end, I'd like to test for a trailing slash, <strong>or</strong> the absence of any characters. </p>
<p>How do I do that with a regular expression?</p>
http://stackoverflow.com/questions/229100/apache-modrewrite-domain-level-cookie1Apache MOD_REWRITE Domain Level CookieBigMadKev2008-10-23T09:30:08Z2009-12-16T06:00:02Z
<p>I need to deal with Affiliate Tracking on our website.</p>
<p>In our .htaccess we have:</p>
<pre><code>RewriteCond %{QUERY_STRING} affiliate=(.*)
RewriteRule ^(.*)$ $1? [NC,R,L,co=AFFID:%1:%{HTTP:Host}:7200:/]
</code></pre>
<p>Which creates a COOKIE called AFFID with the value of the URL Parameter affiliate.</p>
<p>But the Cookie is not for the whole domain, i.e. Going to <a href="http://www.domain.com/?affiliate=bmk" rel="nofollow">http://www.domain.com/?affiliate=bmk</a> sets the AFFID cookie with the value bmk for .www.domain.com but I would like ti to be for .domain.com so that it can be used across our secure domain which will be secure.domain.com </p>
<p>Any help would be appreciated </p>
<p>Cheers</p>
http://stackoverflow.com/questions/1910954/codeigniter-installation-problem-on-shared-host0codeigniter installation problem on shared hostYc Zhang2009-12-15T22:38:12Z2009-12-15T22:55:54Z
<p>my host account is something like:</p>
<p>~<br>
~/public_html<br>
~/public_html/system/application </p>
<p>to access my web, I need to put <a href="http://example.com/~userid" rel="nofollow">http://example.com/~userid</a> in address bar</p>
<p>I install codeigniter in the ~/public_html directory, I can access <a href="http://example.com/~userid" rel="nofollow">http://example.com/~userid</a>.</p>
<p>The Welcome page shows correctly, and the related user guide pages show correctly.</p>
<p>The problem is: if I create a new controller, and create new views, the web page just show "Error 404: Document Not Found". If I use <a href="http://example.com/~userid/welcome/index" rel="nofollow">http://example.com/~userid/welcome/index</a> it has the same problem.</p>
<p>If I use base_url() function it shows <a href="http://example.com/~userid/" rel="nofollow">http://example.com/~userid/</a> </p>
<p>What should I do do fix this problem?</p>
<p>Thanks in advance!</p>