<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
  <channel>
    <title>Udvikleren.dk - Seneste [rewriterule] forum tråde</title>
    <description>De seneste forum tråde i [rewriterule] på Udvikleren.dk</description>
    <link>http://www.udvikleren.dk/</link>
    <pubDate>Wed, 29 Apr 2026 06:33:12 GMT</pubDate>
    <docs>http://backend.userland.com/rss</docs>
    <generator>Udvikleren.dk RSS Feeder</generator>
    <ttl>60</ttl>
    <item>
      <title>Rewrite clean URL med get parameter</title>
      <description>Hej&lt;br /&gt;&lt;br /&gt;Jeg forsøger at lave clean URL til min side, og kan ikke rigtig få det til at virke, da jeg ikke har nok viden omkring dette område.&lt;br /&gt;&lt;br /&gt;jeg vil gerne ændre min URL fra at se sådan her ud&lt;br /&gt;&lt;div class="codeboxheader" id="code_418635953" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_418635953_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;HTML kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_418635953code" style="border-top: 0px; display: none;"&gt;&lt;ol&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;article.php?title=bearattack&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/pre&gt;&lt;br /&gt;til at se sådan her ud&lt;br /&gt;&lt;div class="codeboxheader" id="code_390500336" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_390500336_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;HTML kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_390500336code" style="border-top: 0px; display: none;"&gt;&lt;ol&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;article/bearattack&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;min htaccess ser sådan her ud:&lt;br /&gt;&lt;div class="codeboxheader" id="code_2107275736" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_2107275736_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;Kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_2107275736code" style="border-top: 0px; display: none;"&gt;# Turn Rewrite Engine On
Options +FollowSymLinks
RewriteEngine on


# NC makes the rule non case sensitive
# L makes this the last rule that this specific condition will match
# $ in the regular expression makes the matching stop so that "customblah" will not work

# Rewrite for index.php
RewriteRule ^Home index.php [NC,L]

# Rewrite for article.php
#RewriteRule ^Article article.php&amp;title=$1 [L,QSA]

#RewriteCond %{QUERY_STRING} ^title=([a-zA-Z0-9_-]+)$ 
#RewriteRule ^article.php$ /%1/? [R=301]

#RewriteRule ^pages/article.php$ /title=%1?&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Jeg har brugt en del tid på at finde en løsning men uden held, håber der er en venlig sjæl der vil give mig en hånd.&lt;br /&gt;&lt;br /&gt;for at i bedre kan hjælpe mig, sender jeg også lige de 2 andre filer:&lt;br /&gt;&lt;br /&gt;INDEX.PHP&lt;br /&gt;&lt;div class="codeboxheader" id="code_165323896" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_165323896_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;PHP kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_165323896code" style="border-top: 0px; display: none;"&gt;&lt;ol&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&amp;lt;!&lt;/span&gt;&lt;span style="color: #000000;"&gt;DOCTYPE html&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;html lang&lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;en&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;head&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;meta charset&lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;UTF-8&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;title&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;news&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #000000;"&gt;title&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #000000;"&gt;head&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;body&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;    &lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;?&lt;/span&gt;&lt;span style="color: #000000;"&gt;php&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #800080;"&gt;$Attack&lt;/span&gt;&lt;span style="color: #000000;"&gt;     &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;Bear Attack&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #800080;"&gt;$Killed&lt;/span&gt;&lt;span style="color: #000000;"&gt;     &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;Bear Killed In Traffic Accident&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #800080;"&gt;$Child&lt;/span&gt;&lt;span style="color: #000000;"&gt;      &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;Bear Save Child&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #800080;"&gt;$Drowning&lt;/span&gt;&lt;span style="color: #000000;"&gt;   &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;Bear Save Cat From Drowning&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #800080;"&gt;$articles&lt;/span&gt;&lt;span style="color: #000000;"&gt;          &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit. Minus in, voluptatem eveniet tempora rerum tenetur, nisi pariatur. Eius sequi, cumque. Quam, sit quidem repellendus! At et nisi quia quasi excepturi doloremque quis hic asperiores iure dignissimos alias blanditiis vitae soluta voluptatibus harum quibusdam, eligendi. Reiciendis, deleniti laboriosam dolorem nihil iusto ipsum saepe, soluta laborum facere cum quae, aliquam sint harum.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;; &lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #800080;"&gt;$titles&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;array&lt;/span&gt;&lt;span style="color: #000000;"&gt;(&lt;/span&gt;&lt;span style="color: #800080;"&gt;$Attack&lt;/span&gt;&lt;span style="color: #000000;"&gt;,&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;$Killed&lt;/span&gt;&lt;span style="color: #000000;"&gt;,&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;$Child&lt;/span&gt;&lt;span style="color: #000000;"&gt;,&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;$Drowning&lt;/span&gt;&lt;span style="color: #000000;"&gt;);&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;echo&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                  &amp;lt;div class=&amp;quot;col-lg-8 col-md-8 col-sm-8 col-xs-12&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #0000FF;"&gt;foreach&lt;/span&gt;&lt;span style="color: #000000;"&gt;(&lt;/span&gt;&lt;span style="color: #800080;"&gt;$titles&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;as&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;$title&lt;/span&gt;&lt;span style="color: #000000;"&gt;)&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;{&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;echo&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;article&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                &amp;lt;div class=&amp;quot;panel-group&amp;quot;&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                    &amp;lt;div class=&amp;quot;panel panel-article-border&amp;quot;&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                          &amp;lt;div class=&amp;quot;panel headerColer&amp;quot;&amp;gt;&amp;lt;h4&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;$title&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;/h4&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                      &amp;lt;div class=&amp;quot;panel-body&amp;quot;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;$articles&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;a href=&amp;quot;article.php?title=&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;$title&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;quot;&amp;gt;Read more...&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                    &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                  &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;              &amp;lt;/article&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;}&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;        &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;echo&lt;/span&gt;&lt;span style="color: #000000;"&gt;  &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;?&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #000000;"&gt;body&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #000000;"&gt;html&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;ARTICLE.PHP&lt;br /&gt;&lt;div class="codeboxheader" id="code_541927394" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_541927394_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;PHP kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_541927394code" style="border-top: 0px; display: none;"&gt;&lt;ol&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;a href&lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;home&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;quot;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;Home&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;/&lt;/span&gt;&lt;span style="color: #000000;"&gt;a&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;?&lt;/span&gt;&lt;span style="color: #000000;"&gt;php&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;     &lt;/span&gt;&lt;span style="color: #800080;"&gt;$title&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;$_GET&lt;/span&gt;&lt;span style="color: #000000;"&gt;[&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;title&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;];&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #800080;"&gt;$article&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sint magnam quam praesentium distinctio nihil fugiat quo molestias eum, aliquid ratione! Praesentium veritatis voluptatem illum ipsum odit aut, sint. Totam saepe, cupiditate et possimus officia modi, ipsa ab provident, porro deserunt delectus ea eveniet. Voluptas dolorum pariatur odio iusto doloremque qui.&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;; &lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;         &lt;/span&gt;&lt;span style="color: #0000FF;"&gt;echo&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                     &amp;lt;div class=&amp;quot;col-lg-8 col-md-8 col-sm-8 col-xs-12&amp;quot;&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                         &amp;lt;article&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                             &amp;lt;p&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                                 &amp;lt;h2&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;$title&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;lt;hr class=&amp;quot;hr&amp;quot;&amp;gt;&amp;lt;/h2&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                                     &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #800080;"&gt;$article&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt; &lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                             &amp;lt;/p&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                         &amp;lt;/article&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;                     &amp;lt;/div&amp;gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;'&lt;/span&gt;&lt;span style="color: #000000;"&gt;;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;?&amp;gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/pre&gt;&lt;br /&gt;</description>
      <link>http://www.udvikleren.dk/forum/46659/rewrite-clean-url-med-get-parameter/</link>
      <pubDate>Sun, 30 Aug 2015 21:12:50 GMT</pubDate>
    </item>
    <item>
      <title>Fejl i .htaccess filen på mit webhotel</title>
      <description>Hej,&lt;br /&gt;jeg har fundet ud af at der er sket en fejl i .htaccess filen på mit webhotel. &lt;br /&gt;&lt;br /&gt;Mit .htaccess ser således ud (Se &lt;a href="http://i1359.photobucket.com/albums/q798/tvenstrupbirch/Udklip_zpsmfeliryy.png)"&gt;http://i1359.photobucket.com/albums/q798/tvenstrupbirch/Udklip_zpsmfeliryy.png)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Jeg forstår dog ikke rigtigt hvad jeg kan gøre for at få det til at virke igen&lt;br /&gt;&lt;br /&gt;Fejlen lyder:&lt;br /&gt;[Sat Feb 21 11:08:23.123653 2015] [core:alert] [pid 850395] [client 80.163.58.120:35019] /home/rasmusbi/public_html/.htaccess: RewriteRule: bad flag delimiters&lt;br /&gt;&lt;br /&gt;Er det noget i kan hjælpe med?&lt;br /&gt;&lt;br /&gt;[Edit]&lt;br /&gt;Jeg har fået det til at virke ved at gøre som du har sagt, men desværre er der 2 af mine undersider der bliver hostet på web hotellet  der ikke er tilgængelige. Siderne Aim-high.dk og Beautidesign.dk. Jeg kan ikke se hvad problemet er da alle mine andre sider fungerer ordentligt, jeg kan heller ikke finde noget i error loggen...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Hilsen Rasmus</description>
      <link>http://www.udvikleren.dk/forum/46470/fejl-i-.htaccess-filen-paa-mit-webhotel/</link>
      <pubDate>Mon, 23 Feb 2015 13:10:16 GMT</pubDate>
    </item>
    <item>
      <title>.htaccess rewrite extensions</title>
      <description>Hej.&lt;br /&gt;&lt;br /&gt;Jeg ville høre, om der er nogle der ved, hvordan man laver sådan, så hvis man f.eks. taster eksempel.dk/index.php, at man så bliver sendt over til eksempel.dk/index, så man bare fjerner fil endelserne?&lt;br /&gt;&lt;br /&gt;Jeg har lige nu følgende kode:&lt;br /&gt;&lt;div class="codeboxheader" id="code_534448397" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_534448397_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;Kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_534448397code" style="border-top: 0px; display: none;"&gt;Options +FollowSymlinks
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php [L]&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;På forhånd tak &lt;img src="/images/smileys/smiley.gif" alt=":)" title=":)" /&gt;.</description>
      <link>http://www.udvikleren.dk/forum/39257/.htaccess-rewrite-extensions/</link>
      <pubDate>Thu, 06 Dec 2012 12:12:48 GMT</pubDate>
    </item>
    <item>
      <title>RewriteRule med to variabler</title>
      <description>Hej.&lt;br /&gt;&lt;br /&gt;Jeg er igang med at lave en hjemmeside til mit fodboldhold, og er løbet ind i et problem mht. en rewriterule.&lt;br /&gt;&lt;br /&gt;Jeg har lavet det sådan at en spiller kan vælges enten ud fra spillerens navn eller spillerens nummer - hvilket giver en url som dette:&lt;br /&gt;showplayer.php?number=10&lt;br /&gt;eller&lt;br /&gt;showplayer.php?name=jens_jensen&lt;br /&gt;&lt;br /&gt;Jeg vil nu gerne lave lækre url på hjemmesiden og forsøger at få det til at være enten&lt;br /&gt;spiller/10&lt;br /&gt;eller&lt;br /&gt;spiller/jens_jensen&lt;br /&gt;&lt;br /&gt;til dette har jeg lavet følgende rewriterule:&lt;br /&gt;&lt;br /&gt;RewriteRule ^spiller/(.*)$ showplayer.php?number=$1&lt;br /&gt;RewriteRule ^spiller/([a-zA-Z0-9_-]+)$ showplayer.php?name=$1&lt;br /&gt;&lt;br /&gt;Problemet er bare at den ikke kan finde ud af det hvis jeg gør ovenstående, da jeg jo her sætter to rewriterules istedet for kun en - og det må gøre browseren forvirret?&lt;br /&gt;&lt;br /&gt;Begge af ovenstående fungerer fint hvis jeg bruger dem hver for sig - men mit spørgsmål er altså: &lt;br /&gt;Hvordan får jeg lavet en rewriteurl der både godtager number=$1 og name=$1?&lt;br /&gt;&lt;br /&gt;Tak for hjælpen</description>
      <link>http://www.udvikleren.dk/forum/38977/rewriterule-med-to-variabler/</link>
      <pubDate>Thu, 18 Oct 2012 05:24:16 GMT</pubDate>
    </item>
    <item>
      <title>regulært udtryk</title>
      <description>Jeg vil gerne gøre så følgende 3 urls viderestilles:&lt;br /&gt;localhost/ub/123/noget-tekst&lt;br /&gt;localhost/ub/123/&lt;br /&gt;localhost/ub/123&lt;br /&gt;&lt;br /&gt;I min .htaccess fil skriver jeg følgende.&lt;br /&gt;&lt;div class="codeboxheader" id="code_2147286885" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_2147286885_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;Kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_2147286885code" style="border-top: 0px; display: none;"&gt;RewriteRule ^ub/(.*)/(.*)$ scooterhjemmeside/billeder.php?$1 [L]
RewriteRule ^ub/(.*)[\W]?(.*)$ scooterhjemmeside/billeder.php?$1 [L]
&lt;/pre&gt;&lt;br /&gt;Det virker men jeg er ikke god til regulært udtryk og sidder bare og gætter mig frem til hvad der skal stå.&lt;br /&gt;Og det skulle jo gerne kun være 1 linie og ikke 2.&lt;br /&gt;Så hvordan skriver jeg det rigtigt ?&lt;br /&gt;&lt;br /&gt;Hvordan siger jeg at der måske skal være et /-tegn ?&lt;br /&gt;Jeg har prøvet med [/]? og ligende men ved ikke helt hvordan jeg skal gøre.</description>
      <link>http://www.udvikleren.dk/forum/37668/regulaert-udtryk/</link>
      <pubDate>Mon, 23 Apr 2012 13:14:47 GMT</pubDate>
    </item>
    <item>
      <title>.htaccess - flere applikationer(subfolders) på samme webhotel</title>
      <description>Hej Udviklere..&lt;br /&gt;&lt;br /&gt;Jeg vil starte med at indrømme at jeg langt fra er god til .htaccess og jeg føler jeg skyder i blinde når jeg koder i det.&lt;br /&gt;&lt;br /&gt;Når jeg laver et website bruger jeg nedenstående htaccess (i roden) for at lave pæne url'er og for at kunne styre hele siden fra en index.php fil - og det har altid virket upåklageligt &lt;img src="/images/smileys/smiley.gif" alt=":)" title=":)" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="codeboxheader" id="code_1969142894" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_1969142894_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;Kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_1969142894code" style="border-top: 0px; display: none;"&gt;
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !index.php
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteRule ^(.*)$ http://www.domænenavn.dk/$1/ [L,R=301]
RewriteRule ^(.+)/$ index.php 
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;MEN - nu har jeg startet et nyt website - som fungerer som min egen bureauside - og der har jeg følgende struktur:&lt;br /&gt;&lt;br /&gt;root&lt;br /&gt;- .htaccess&lt;br /&gt;- index.php&lt;br /&gt;- projects&lt;br /&gt;- - project1&lt;br /&gt;- - - index.php&lt;br /&gt;- - project2&lt;br /&gt;- - - index.php&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Det vil sige at hvet projekt skal på en eller anden måde have nogle individuelle regler i htaccess. Mit spørgsmål er så om det gøres i en .htaccess fil i roden eller i hver af projektmapperne - og lige så vigtigt hvordan disse skal laves?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Håber virkelig på jeres hjælp her &lt;img src="/images/smileys/smiley.gif" alt=":)" title=":)" /&gt; - På forhånd tak</description>
      <link>http://www.udvikleren.dk/forum/35110/.htaccess-flere-applikationer(subfolders)-paa-samme-webhotel/</link>
      <pubDate>Tue, 16 Aug 2011 11:28:46 GMT</pubDate>
    </item>
    <item>
      <title>.htaccess - url rewriting</title>
      <description>Hej alle udviklere. :-)&lt;br /&gt;Jeg sidder med et lille problem, som jeg har først at løs selv, i et godt stykke tid, men uden held. Det drejer sig om min .htaccess fil, som fungere fint nok nu, men som skriver f.eks.: &lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.domæne.dk/index.php/side"&gt;http://www.domæne.dk/index.php/side&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Hvor imod, jeg gerne vil have den til at udskrive:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.domæne.dk/side"&gt;http://www.domæne.dk/side&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Håber nogle af jer kloge hoveder, kan hjælpe mig :-)&lt;br /&gt;&lt;br /&gt;&lt;div class="codeboxheader" id="code_676856230" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_676856230_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;PHP kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_676856230code" style="border-top: 0px; display: none;"&gt;&lt;ol&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;RewriteEngine On&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;RewriteCond &lt;/span&gt;&lt;span style="color: #000000;"&gt;%&lt;/span&gt;&lt;span style="color: #000000;"&gt;{HTTP_HOST} &lt;/span&gt;&lt;span style="color: #000000;"&gt;!^&lt;/span&gt;&lt;span style="color: #000000;"&gt;www\&lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;RewriteRule &lt;/span&gt;&lt;span style="color: #000000;"&gt;^&lt;/span&gt;&lt;span style="color: #000000;"&gt;(&lt;/span&gt;&lt;span style="color: #000000;"&gt;.*&lt;/span&gt;&lt;span style="color: #000000;"&gt;)$ http&lt;/span&gt;&lt;span style="color: #000000;"&gt;:&lt;/span&gt;&lt;span style="color: #008000;"&gt;//&lt;/span&gt;&lt;span style="color: #008000;"&gt;www.%{HTTP_HOST}/$1 [R=301,L]&lt;/span&gt;&lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #008000;"&gt;&lt;/span&gt;&lt;span style="color: #000000;"&gt;RewriteRule &lt;/span&gt;&lt;span style="color: #000000;"&gt;^&lt;/span&gt;&lt;span style="color: #000000;"&gt;index\&lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt;php&lt;/span&gt;&lt;span style="color: #000000;"&gt;/&lt;/span&gt;&lt;span style="color: #000000;"&gt;([&lt;/span&gt;&lt;span style="color: #000000;"&gt;^/&lt;/span&gt;&lt;span style="color: #000000;"&gt;]&lt;/span&gt;&lt;span style="color: #000000;"&gt;*&lt;/span&gt;&lt;span style="color: #000000;"&gt;)&lt;/span&gt;&lt;span style="color: #000000;"&gt;/&lt;/span&gt;&lt;span style="color: #000000;"&gt;([&lt;/span&gt;&lt;span style="color: #000000;"&gt;^/&lt;/span&gt;&lt;span style="color: #000000;"&gt;]&lt;/span&gt;&lt;span style="color: #000000;"&gt;*&lt;/span&gt;&lt;span style="color: #000000;"&gt;)$ &lt;/span&gt;&lt;span style="color: #000000;"&gt;/?&lt;/span&gt;&lt;span style="color: #000000;"&gt;page_subPage&lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt;$&lt;/span&gt;&lt;span style="color: #000000;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt;&amp;amp;&lt;/span&gt;&lt;span style="color: #000000;"&gt;page&lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt;$&lt;/span&gt;&lt;span style="color: #000000;"&gt;2&lt;/span&gt;&lt;span style="color: #000000;"&gt; [L]&lt;/span&gt;&lt;/li&gt;&lt;li style="padding: 0; margin: 0;"&gt; &lt;span style="color: #000000;"&gt;RewriteRule &lt;/span&gt;&lt;span style="color: #000000;"&gt;^&lt;/span&gt;&lt;span style="color: #000000;"&gt;index\&lt;/span&gt;&lt;span style="color: #000000;"&gt;.&lt;/span&gt;&lt;span style="color: #000000;"&gt;php&lt;/span&gt;&lt;span style="color: #000000;"&gt;/&lt;/span&gt;&lt;span style="color: #000000;"&gt;([&lt;/span&gt;&lt;span style="color: #000000;"&gt;^/&lt;/span&gt;&lt;span style="color: #000000;"&gt;]&lt;/span&gt;&lt;span style="color: #000000;"&gt;*&lt;/span&gt;&lt;span style="color: #000000;"&gt;)$ &lt;/span&gt;&lt;span style="color: #000000;"&gt;/?&lt;/span&gt;&lt;span style="color: #000000;"&gt;page&lt;/span&gt;&lt;span style="color: #000000;"&gt;=&lt;/span&gt;&lt;span style="color: #000000;"&gt;$&lt;/span&gt;&lt;span style="color: #000000;"&gt;1&lt;/span&gt;&lt;span style="color: #000000;"&gt; [L]&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/pre&gt;</description>
      <link>http://www.udvikleren.dk/forum/33836/.htaccess-url-rewriting/</link>
      <pubDate>Thu, 17 Mar 2011 12:00:42 GMT</pubDate>
    </item>
    <item>
      <title>Rewrite image-url</title>
      <description>Hej alle sammen..&lt;br /&gt;&lt;br /&gt;jeg forsøger at opnå et billede rewrite som skulle virker så jeg kunne skrive:&lt;br /&gt;&lt;div class="codeboxheader" id="code_1859992719" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_1859992719_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;Kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_1859992719code" style="border-top: 0px; display: none;"&gt;
images/492x228/seo-seo.jpg?image=/interface/graphics/img2.png
og så går den over på
/lib/moduels/image_resizer/image.php?width=492&amp;height=228&amp;image=/interface/graphics/img2.png
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;her er hvad jeg har forsøgt mig med, men kan ikke lige gennemskue det..&lt;br /&gt;&lt;br /&gt;&lt;div class="codeboxheader" id="code_1014447117" onclick="ToggleCodeBox(this.id);"&gt;&lt;img id="code_1014447117_arrow" src="/images/icons/codeboxarrow_down.gif" alt="Fold kodeboks ind/ud" title="Fold kodeboks ind/ud" /&gt;Kode&amp;nbsp;&lt;/div&gt;&lt;pre id="code_1014447117code" style="border-top: 0px; display: none;"&gt;
RewriteRule ^images/(.+)x(.+)/(.+)?image=(.+)?$ /lib/modules/image_resizer/image.php?width=$1&amp;height=$2&amp;image=$4
&lt;/pre&gt;</description>
      <link>http://www.udvikleren.dk/forum/33827/rewrite-image-url/</link>
      <pubDate>Thu, 17 Mar 2011 08:53:34 GMT</pubDate>
    </item>
  </channel>
</rss>