active questions tagged urlrewrite - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T04:41:39Zhttp://stackoverflow.com/feeds/tag/urlrewritehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1828098/how-to-elegantly-handle-returnurl-when-using-urlrewrite-in-asp-net-2-0-webforms2How to elegantly handle ReturnUrl when using UrlRewrite in ASP.NET 2.0 WebFormsBrian Kim2009-12-01T18:49:45Z2009-12-01T19:37:03Z
<p>I have a folder with multiple .aspx pages that I want to restrict access to. I have added web.config to that folder with <code><deny users="?"/></code>. </p>
<p>The problem is that ReturnUrl is auto-generated with physical path to the .aspx file while I'm using UrlRewrite. </p>
<p>Is there a way to manipulate ReturnUrl without doing manual authentication check and redirection? Is there a way to set ReturnUrl from code-behind or from web.config?</p>
<p>EDIT: The application is using ASP.NET 2.0 WebForms. I cannot use 3.5 routing.</p>
http://stackoverflow.com/questions/346702/problem-with-images-and-stylesheet-while-using-urlrewriter1Problem with images and stylesheet while using urlrewriterbeytz2008-12-06T20:08:54Z2009-11-24T10:10:59Z
<p>I'm using the urlrewriter.net as recommended in several questions in here.
I'm having difficulties with displaying images and with the stylesheet.</p>
<p>I read ScottGu's Blog (again as recommended in here) and in the end he does reffer to this problem and states to use ~/ for server controls etc. ("Handling CSS and Image Reference Correctly" at the end of the article).</p>
<p>I tried his solution and it doesn't seem to work.</p>
<p>The only thing that seems to work for me is to write the full path. For some reason, it doesn't seem to me as the right solution. It would make a serious problem developing and debugging.</p>
<p>Does anyone know what can be the cause of the problem?
Is there something I need to change in the web.config file?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1772327/url-rewriter-not-grabbing-the-exact-match1URL Rewriter not grabbing the exact matchJackM2009-11-20T18:13:25Z2009-11-20T18:18:44Z
<p>I'm implementing some url rewriting using UrlRewriter.</p>
<p>So going to <a href="http://domainname/11" rel="nofollow">http://domainname/11</a></p>
<p>will go to ~/Items/Details.aspx?Itemid=11</p>
<pre><code> <rewriter>
<rewrite url="~/1" to="~/Items/Details.aspx?ItemId=1" />
<rewrite url="~/2" to="~/Items/Details.aspx?ItemId=2" />
<rewrite url="~/3" to="~/Items/Details.aspx?ItemId=3" />
<rewrite url="~/11" to="~/Items/Details.aspx?ItemId=11" />
</rewriter>
</code></pre>
<p>The problem here is 11 always redirects to 1. Same as 400 redirects to 4. I'm guessings it's not doing an exact match, only some sort of "Contains".</p>
<p>How do I get this to do exact matching?</p>
<p>I was using this for regex to not hard code everything but that didnt work eitehr:</p>
<pre><code><rewriter>
<rewrite url="~/(\d)" to="~/Items/Details.aspx?ItemId=$1" />
</rewriter>
</code></pre>
<p>thanks guys!</p>
http://stackoverflow.com/questions/1762453/rewrite-spring-security-redirect-urls2Rewrite spring-security redirect URLsptomli2009-11-19T10:50:23Z2009-11-20T15:31:26Z
<p>I'm trying to get Tuckey UrlRewriteFilter to tidy up URLs for my webapp. One problem I've got is that when spring-security notices that an anonymous user is trying to access a protected resource it redirects to a URL which includes the servlet path.</p>
<p>What I'd like is, by example:</p>
<pre><code>> GET http://localhost:8080/my-context/protected-resource
< Location: http://localhost:8080/my-context/login
</code></pre>
<p>What I currently get is:</p>
<pre><code>> GET http://localhost:8080/my-context/protected-resource
< Location: http://localhost:8080/my-context/-/login
</code></pre>
<p>Relevant documents I've found so far:</p>
<p>DefaultRedirectStrategy, which does the actual redirect in question: <a href="http://static.springsource.org/spring-security/site/docs/3.0.x/apidocs/org/springframework/security/web/DefaultRedirectStrategy.html" rel="nofollow">http://static.springsource.org/spring-security/site/docs/3.0.x/apidocs/org/springframework/security/web/DefaultRedirectStrategy.html</a>. It has a contextRelative property which is tempting but I don't think is going to cut it, if I can even find a way of configuring it.</p>
<p>A blog post that helped get me this far: <a href="http://nonrepeatable.blogspot.com/2009/11/using-spring-security-with-tuckey.html" rel="nofollow">http://nonrepeatable.blogspot.com/2009/11/using-spring-security-with-tuckey.html</a></p>
<p>What I'd like to know is:</p>
<ol>
<li>Can/should I convince Tuckey to rewrite the Location header. <outbound-rule> doesn't seem to help any here.</li>
<li>Can/should I somehow tweak the SS config to emit the rewritten URL. I don't think this is quite as tidy, as it'd break if rewrite was disabled.</li>
</ol>
<p>web.xml looks like</p>
<pre><code><filter>
<filter-name>UrlRewriteFilter</filter-name>
<filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class>
<init-param>
<param-name>LogLevel</param-name>
<param-value>log4j</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>UrlRewriteFilter</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<dispatcher>INCLUDE</dispatcher>
<dispatcher>ERROR</dispatcher>
</filter-mapping>
<servlet>
<servlet-name>my-servlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>psms</servlet-name>
<url-pattern>/-/*</url-pattern>
</servlet-mapping>
</code></pre>
<p>urlrewrite.xml looks like:</p>
<pre><code><urlrewrite>
<rule>
<from>^/(.*)$</from>
<to>/-/$1</to>
</rule>
</urlrewrite>
</code></pre>
<p>applicationContent-security.xml looks like:</p>
<pre><code><http auto-config="true">
<!-- allow GET requests to /login without authentication -->
<intercept-url pattern="/-/login" method="GET" filters="none"/>
<intercept-url pattern="/-/admin/**" access="ROLE_ADMIN"/>
<intercept-url pattern="/-/**" access="ROLE_USER"/>
<form-login login-page="/-/login"
login-processing-url="/-/login.do"
authentication-failure-url="/-/login?login_error"
default-target-url="/-/index"
always-use-default-target="true"/>
<logout logout-url="/-/logout"
logout-success-url="/-/login"/>
<access-denied-handler error-page="/-/access-denied"/>
</http>
</code></pre>
http://stackoverflow.com/questions/1687016/keep-old-urls-when-implementing-urlrewriter-net0Keep old URLs when implementing UrlRewriter.netFischer2009-11-06T11:28:51Z2009-11-11T18:10:48Z
<p>I added UrlRewriter.net to my site today and it works fine with redirecting my SEO links to actual pages. The question is if there is any way to keep my old links in site and have ResolveUrl() using the rules to output links in my page. The "old" links should never be viewed by either search bots or users.</p>
<p>Example link in page:</p>
<pre><code><a href="<%= ResolveUrl("~/Help.aspx") %>">Help</a>
</code></pre>
<p>I added rewrite code like this in web.config:</p>
<pre><code><rewrite url="~/help" to="~/help.aspx" />
<rewrite url="~/help/(.+)" to="~/help.aspx?section=$1" />
</code></pre>
<p>First it would be great to have the links rendered without any extra job like MVC has. The second best is if there is a nice way to just add rules for "the other way" as well in the rewrite list.</p>
<p>This would also enable me to easally turn off/on redirecting when debugging.</p>
http://stackoverflow.com/questions/1696660/what-does-l-mean-in-apache-rewrite0What does [L] mean in apache rewrite?Mask2009-11-08T13:59:31Z2009-11-08T14:22:32Z
<p>Like here:</p>
<pre><code>RewriteEngine on
RewriteRule ^(.*)\.[\d]+\.(css|js)$ $1.$2 [L]
</code></pre>
http://stackoverflow.com/questions/1629231/nginx-rewrite-non-www-prefixed-domain-to-www-prefixed-domain0Nginx rewrite non-www-prefixed domain to www-prefixed domainsaltycrane2009-10-27T07:31:04Z2009-11-06T23:01:21Z
<p>I see the Nginx <a href="http://wiki.nginx.org/NginxHttpRewriteModule" rel="nofollow">HttpRewriteModule documentation</a> has an example to rewrite a www-prefixed domain to a non-www-prefixed domain:</p>
<pre><code>if ($host ~* www\.(.*)) {
set $host_without_www $1;
rewrite ^(.*)$ http://$host_without_www$1 permanent; # $1 contains '/foo', not 'www.mydomain.com/foo'
}
</code></pre>
<p>How can I do the reverse-- rewrite a non-www-prefixed domain to a www-prefixed domain? I thought maybe I could do something like the following but Nginx doesn't like the nested if statement.</p>
<pre><code>if ($host !~* ^www\.) { # check if host doesn't start with www.
if ($host ~* ([a-z0-9]+\.[a-z0-9]+)) { # check host is of the form xxx.xxx (i.e. no subdomain)
set $host_with_www www.$1;
rewrite ^(.*)$ http://$host_with_www$1 permanent;
}
}
</code></pre>
<p>Also I wanted this to work for any domain name without explicitly telling Nginx to rewrite domain1.com -> www.domain1.com, domain2.com -> www.domain2.com, etc. since I have a large number of domains to rewrite.</p>
http://stackoverflow.com/questions/1685763/url-aliasing-using-htaccess0URL Aliasing using .htaccessVijay Kumar2009-11-06T06:19:20Z2009-11-06T09:50:47Z
<p>i'm having 'domainname1/folder/' .In Domainname1 i'm having a subdirectory which is a subdomain (abc.mydomain.com) of other domain. but this is referred to 'domainname1/folder/' . the thing is that i want the URL links accessing from 'domainname1/folder/' should be displayed following with sub domain like .</p>
<p>'domainname1/folder/'</p>
<p>to</p>
<p>'abc.mydomain.com/path'</p>
http://stackoverflow.com/questions/536821/combining-urlrewritefilter-and-struts-2-with-get-parameters0Combining UrlRewriteFilter and struts 2 with get parameterswds2009-02-11T13:44:20Z2009-11-03T12:30:29Z
<p>Following up on an older question of mine, I managed to get URL Rewriting working somewhat correctly for my struts project where URLs like <code>search?q=blah</code> get converted to queries <code>search.action?q=blah</code>. We use <a href="http://code.google.com/p/urlrewritefilter/" rel="nofollow">UrlRewriteFilter</a> for this. This seems to forward fine to struts (if making sure it has a filter mapping with FORWARD), but when the <code>ParametersIntercepter</code> runs it seems to be catching every parameter twice, and adding comma's in between. So the following:</p>
<pre><code>search.action?q=blah
</code></pre>
<p>Sets the parameter q on the Criteria object (see further) to:</p>
<pre><code>[ blah, blah ]
</code></pre>
<p>The parameters are set using <code>ModelDriven<Criteria></code> Where Criteria is a simple class with a bunch of properties to be set from the GET string.</p>
<p>I'm at a loss to explain why this is happening. Has anyone ever seen anything like this? Am I doing something wrong with regards to the filters/interceptors?</p>
<p>edit: It seems the <code>ParametersInterceptor</code> simply sets the parameters contained inside the ActionContext object. I'm not sure (and am not seeing any debug messages that indicate) where these values are being set in the ActionContext. Does anyone care to clarify how this is all supposed to work?</p>
http://stackoverflow.com/questions/1656663/how-to-keep-original-parameters-after-urlrewrite0How to keep original parameters after url_rewrite?another2009-11-01T08:29:50Z2009-11-01T10:06:16Z
<p>I'm now doing this:</p>
<pre><code> rewriterule ^jobs/([0-9]+)/.* job.php?id=$1
</code></pre>
<p>Which will erase parameters in jobs/1010/title?k=v</p>
<p>How to keep them?</p>
http://stackoverflow.com/questions/91038/how-to-rewrite-an-url-on-a-jboss-server2How to rewrite an URL on a JBoss server?Syl2008-09-18T08:53:57Z2009-10-28T12:36:51Z
<p>I would like to redirect/rewrite this two kinds of URLs:</p>
<ul>
<li>mydomain.com -> newdomain.com</li>
<li>mydomain.com/specificPage -> newdomain.com/newSpecificPage</li>
<li>mydomain.com/anyOtherPage -> mydomain.com/anyOtherPage (no redirect here)</li>
</ul>
<p>So I just want to redirect the root domain to a new domain, and <em>some</em> pages from my domain to some pages on a new domain...</p>
<p>How can I do that on a JBoss server ?</p>
http://stackoverflow.com/questions/14697/what-url-rewriter-do-you-use-for-asp-net12What Url rewriter do you use for ASP.Net?travis2008-08-18T14:32:12Z2009-10-14T15:33:15Z
<p>I've looked at several URL rewriters for ASP.Net and IIS and was wondering what everyone else uses, and why. </p>
<p>Here are the ones that I have used or looked at:</p>
<ul>
<li><a href="http://www.codeproject.com/KB/aspnet/urlrewriter.aspx" rel="nofollow">ThunderMain URLRewriter</a>: used in a previous project, didn't quite have the flexibility/performance we were looking for</li>
<li><a href="http://web.archive.org/web/20070202012119/blog.ewal.net/2004/04/14/a-url-redirecting-url-rewriting-httpmodule/" rel="nofollow">Ewal UrlMapper</a>: used in a current project, but source seems to be abandoned</li>
<li><a href="http://www.urlrewriting.net/149/en/home.html" rel="nofollow">UrlRewritingNet.UrlRewrite</a>: seems like a decent library but documentation's poor grammar leaves me feeling uneasy</li>
<li><a href="http://urlrewriter.net/" rel="nofollow">UrlRewriter.NET</a>: this is my current fav, has great flexibility, although the extra functions pumped into the replacement regexs changes the standard .Net regex syntax a bit</li>
<li><a href="http://www.managedfusion.com/products/url-rewriter/" rel="nofollow">Managed Fusion URL Rewriter</a>: I found this one in a <a href="http://beta.stackoverflow.com/questions/2262/aspnet-url-rewriting#2268" rel="nofollow">previous question</a> on stack overflow, but haven't tried it out yet, from the example syntax, it doesn't seem to be editable via web.config</li>
</ul>
http://stackoverflow.com/questions/1559888/iis-5-1-httphandler-based-on-path-not-working-is-it-possible-to-fix-with-iirf1IIS 5.1, HttpHandler based on path, NOT Working. Is it possible to fix with IIRF?arri.me2009-10-13T12:25:10Z2009-10-13T12:25:10Z
<p>I have a reverse proxy written in C#/ASP.NET. After adding a Wildcard Mapping in IIS6 it works just fine. My problem is that I have to make this application compatible with Windows XP and IIS 5.1. At first attempt adding a wildcard file type mapped to aspnet_isapi.dll didn't work. I also tried using a file extention to no avail.</p>
<p>My next path is to explore using Ionic's Isapi Rewrite Filter (IIRF) to reroute requests to my Asp.Net application. Has anyone used it for this purpose? Its seems to me like I'd still need to change how my reverse proxy works.</p>
<p>Right now, through a process I generate a connection, so the user sees:</p>
<pre><code>http://example.com/remotesite/34x904/home.htm
</code></pre>
<p>and I have the HttpHandler mapped to the remotesite/ virtual path</p>
<pre><code><add verb="*" path="/remotesite/*" validate="false" type="Proxy.Core.HttpHandler,Proxy.Core"/>
</code></pre>
<p>and the backend HttpWebRequest will ultimately use a URI like so:</p>
<pre><code>http://10.1.1.21/home.htm
</code></pre>
<p>In IIS 5 I've trine mapping by file extention, but I still get Paged Cannot Be Displayed.</p>
<pre><code><add verb="*" path="test.proxy" validate="false"
type="Proxy.Core.HttpHandler,Proxy.Core"/>
<add verb="*" path="/test.proxy/*" validate="false"
type="Proxy.Core.HttpHandler,Proxy.Core"/>
</code></pre>
http://stackoverflow.com/questions/1519311/very-strange-url-rewrite-problem0Very strange URL rewrite problem?McDotNet2009-10-05T10:33:05Z2009-10-05T10:59:09Z
<p>I am rewriting the url <a href="http://www.tworiverstaines.co.uk" rel="nofollow">http://www.tworiverstaines.co.uk</a> to <a href="http://www.tworiverstaines.co.uk/TwoRivers/" rel="nofollow">http://www.tworiverstaines.co.uk/TwoRivers/</a></p>
<p>When the site first loads the rewrite works correctly displaying Default.aspx with all the hyperlinks working correctly including the path to the App_Themes folder etc.</p>
<p>However when you click on the homepage link (or any other) when the Default.aspx (or page requested) loads all the hyperlinks and paths are altered from /Default.aspx to /TwoRivers/Default.aspx so when you click on a hyperlink it is broken as the rewrite rule will take you to www.tworiverstaines.co.uk/TwoRivers/TwoRivers/Default.aspx.</p>
<p>To prevent the 404 error I have added a local rule to rewrite /TwoRivers/TwoRivers/ to /TwoRivers/ however this isn't a good solution as the URL in the browser shows the subfolder and pages become available at /Default.aspx and /TwoRivers/Default.aspx which could present duplicate content issues with search engines.</p>
<p>Does anyone have any idea why this is happening?</p>
<p>The site can be accessed at <a href="http://www.tworiverstaines.co.uk" rel="nofollow">http://www.tworiverstaines.co.uk</a></p>
<p>I am displaying the header information at the bottom of each page to display the paths.</p>
http://stackoverflow.com/questions/1494003/urlrewriting-challange0URLRewriting challangeebattulga2009-09-29T17:44:40Z2009-09-29T17:57:28Z
<p>I'm using URLRewritingNet 2.0. How do I rewrite URL's in ASP.NET?</p>
<p>I request is here >></p>
<p>Input: <code>www.sampleweb.com/param1/value1/param2/value2/default.aspx</code></p>
<p>Output: <code>www.sampleweb.com/default.aspx?param1=value1&param2=value2</code></p>
<p>Must work dynamically like this <code>param1/value1/param2/value2/ ... /paramN/valueN</code></p>
http://stackoverflow.com/questions/1468360/url-rewriting-for-asp-net-under-mono-xsp20url rewriting for asp.net under mono xsp2possan2009-09-23T20:33:44Z2009-09-23T21:05:45Z
<p>I'm trying to do some asp.net development on a Mac right now and i'm having trouble finding a urlrewriting library that works fine under mono (and the xsp2 webserver)</p>
<p>Of course you could write your own, but i have a bunch of rules already created and i dont want to rewrite(!) them in code if dont have to.</p>
<p>i've used <a href="http://urlrewriter.net/" rel="nofollow">UrlRewriter.Net</a> in this project before but that doesn't seem to work, now i tried <a href="http://urlrewriter.codeplex.com/" rel="nofollow">ManagedFusion URL Rewriter</a>, but that one fails on XSP2 too. </p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1407622/xampp-redirects0xampp redirectsMarcelo2009-09-10T20:45:09Z2009-09-15T01:39:10Z
<p>Hi guys, does anyone has an example how to do a rule in .httpaccess in xampp? I m trying to redirect from localhost/test/company.php?name=Abc to localhost/test/company/Abc and I cant seem to find the solution. I followed some examples that I found on the web but none seems to work. I'm putting the .htacces file in the same folder where I have the company.php file. And I have the urlrewrite turned on. Thanks
Greetz</p>
http://stackoverflow.com/questions/1399995/htaccess-question1htaccess questionPasta2009-09-09T14:17:24Z2009-09-09T14:20:28Z
<p>This is a simple htaccess question for experts but I have been trying to get this sorted for a while. This was something a developer did before my time with this code. He truncated the image file extension from the requests. As an example,</p>
<p><code>/images/btn/Find a bear</code> should get the URL changed internally to <code>/images/btn/Find a bear.gif</code></p>
<p>All the images in the folder are <code>.gif</code> extensions.</p>
<p>I tried this URL rewrite at the root folder but it did not help.</p>
<pre><code>Options +FollowSymlinks
RewriteEngine On
RewriteRule ^images/(.*)$ images/$1.gif
</code></pre>
<p>I know that <code>RewriteRule</code> is enabled on the server, etc. Please help.</p>
http://stackoverflow.com/questions/1382304/urlrewritefilter-equivalent-for-modrewrite1UrlRewriteFilter equivalent for mod_rewriteErwin2009-09-05T02:46:25Z2009-09-05T04:02:01Z
<p>Hi gentlemen</p>
<p>I want to do Url rewrite in Tomcat using UrlRewriteFilter
This is the rule would like in mod_rewrite apache</p>
<pre><code> RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php/$1 [L]
</code></pre>
<p>I'm confused in how to check the request filename if it's not a file or not a folder in UrlRewriteFilter</p>
<p>Can anybody help me?</p>
http://stackoverflow.com/questions/1343573/htaccess-directory0htaccess directoryCarl2009-08-27T20:25:47Z2009-08-28T10:06:20Z
<pre><code>RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^admin/([^/]+)/([^/]+).php website.com/admin/index.php?route=$1/$2 [NS]
RewriteRule ^modules/([^/]+)/([^/]+).php website.com/admin/index.php?route=$1/$2 [NS]
</code></pre>
<p>the above works for when you login. it goes to <code>/admin/modules/catalog</code> but when you click on a link that shows up in the status bar as <code>/admin/vendors/</code> it doesnt work???? which vendors is a sub dir or modules/</p>
<p>any idea</p>
http://stackoverflow.com/questions/1246824/iis7-url-rewrite-not-able-to-postback0IIS7 URL Rewrite - not able to postbackGulfDine Admin2009-08-07T20:24:15Z2009-08-07T20:24:15Z
<p>Hi,</p>
<p>I am trying to use IIS7're URL Rewrite module to have my domain root page displayed as <a href="http://www.gulfdine.com" rel="nofollow">http://www.gulfdine.com</a> instead of gulfdine.com/default.aspx.</p>
<p>To do this, I created a rule in the Rewrite module as shown below:</p>
<pre><code> <rule name="Default Document" stopProcessing="true">
<match url="(.*)default.aspx" />
<action type="Redirect" url="{R:1}" redirectType="Permanent" />
</rule>
</code></pre>
<p>This works, and the page is correctly displayed. The problem is that postbacks no longer work! If I do a postback by clicking on a button, nothing happens!</p>
<p>Any ideas what might be happening?</p>
http://stackoverflow.com/questions/911896/net-datapager-listview-intelligencia-urlrewriter0.net datapager + listview + Intelligencia.UrlRewriternLL2009-05-26T17:50:14Z2009-08-07T09:00:02Z
<p>Hi, i am using Intelligencia.UrlRewriter on a page that has a listview control and datapager. Data paging works fine but pager uses real url instead of rewritten one.</p>
<p>if url rewrite is
/products-page-1.aspx?page=2</p>
<p>and real url</p>
<p>/products.aspx?id=1</p>
<p>pager uses /products.aspx?id=1&page=2</p>
<p>i want to be able to set it so pager uses
/products-page-1.aspx?page=2</p>
<p>I have found some info on the net and got it working with below function</p>
<pre><code>protected void VideosDataPager_PreRender(object sender, EventArgs e)
</code></pre>
<p>{</p>
<pre><code> DataPager pager = (DataPager)Page.FindControl("VideosDataPager");
int count = pager.TotalRowCount;
int pageSize = pager.PageSize;
int pagesCount = count / pageSize + (count % pageSize == 0 ? 0 : 1);
int pageSelected = pager.StartRowIndex / pageSize + 1;
for (int i = 1; i <= pagesCount; ++i)
{
if (pageSelected != i)
{
HyperLink link = new HyperLink();
link.NavigateUrl = "/products--page--" + catnameforPaging + "--1.aspx?p=" + i.ToString();
link.Text = i.ToString();
VideosList.Controls.Add(link);
}
else
{
Literal lit = new Literal();
lit.Text = i.ToString();
VideosList.Controls.Add(lit);
}
Literal space = new Literal();
space.Text = " ";
VideosList.Controls.Add(space);
}
</code></pre>
<p>}</p>
<p>but with this i get 2 datapagin and if i remove VideosDataPager from the page function stops working.</p>
<p>Is ther any way to change target url on datapager?</p>
http://stackoverflow.com/questions/1090773/urlrewriting-net-regular-expression-not-in-string0UrlRewriting.Net Regular expression - "Not in string"Doug2009-07-07T07:05:52Z2009-07-07T20:15:42Z
<p>hi there,</p>
<p>i may be barking up the wrong tree here but i'm banging my head against a wall trying to write a regex rewrite.</p>
<p>i have two site that are identical but by choice the client uses one server (call it <a href="http://www1.test.com" rel="nofollow">http://www1.test.com</a>) to host part of the site to take load off the other.</p>
<p>i am using urlrewriting.net and so far have setup the easy side (www.test.com/minisite) to point at www1.test.com/minisite.</p>
<p>the issue i now have is i want a rule or set of rules that will point everything that is not on www1.test.com/minisite (ie www1.test.com/default.aspx) to point back to www.test.com/$1</p>
<p>so what i really need is a reg ex that will look for anything in the url that does NOT include /minisite AND /assets</p>
<p>is this even possible? and if so what will the regex rule look like?</p>
<p>thanks in advance
cheers
Doug</p>
http://stackoverflow.com/questions/1089183/iis-url-rewrite1IIS URL Rewriteunknown (google)2009-07-06T20:57:29Z2009-07-06T21:25:43Z
<p>Ok, this is driving me nuts... I'm trying to rewrite my urls like this:</p>
<pre><code>Now:
http://www.somedomain.com/Somepage.aspx
http://www.somedomain.com/AnotherPage.aspx
Desired:
http://www.somedomain.com/somepage/
http://www.somedomain.com/anotherlange/
</code></pre>
<p>Can anyone help me out with this? The terms in the User Interface are damn confusing.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1029064/how-do-i-url-rewrite-an-image-properly-c-asp-net0How do i URL rewrite an image properly? C# ASP.NETacidzombie242009-06-22T19:44:20Z2009-06-22T19:58:48Z
<p>I tried several ways to URL rewrite. The first way the image mime was clobbered and was consider an octet stream which didnt allow me to view the image in a browser (unless it was using img src). The 2nd way i wasnt convince it worked. Firefox displayed the img but said the length was 0 (i think it only worked bc it was in my cache).</p>
<p>How do i properly rewrite the image /abc/id/title.png to the internal location /static/user/name/id.png</p>
http://stackoverflow.com/questions/1015886/why-is-the-server-ignoring-rewrite-on-non-aspx-files0Why is the server ignoring rewrite on non ASPX files?acidzombie242009-06-19T00:32:34Z2009-06-19T03:44:35Z
<p>Locally this works but on the server when i do something like /user/profile i get a 404 however if i do /user/profile.aspx it works. I also rewrite images from /s/example.png to /localLocation/example.png, this doesnt work. If i write /localLocation/example.png it does show up however it defeats the purpose of my rewriting. Also if i attach a .aspx to the end of any path i get a default page which shows the address of the rewrite. It is correct but only if i add .aspx. How do i get the server to apply the rewrite to all paths?</p>
http://stackoverflow.com/questions/856873/mod-rewrite-simple-question0Mod Rewrite - Simple Questionbob2009-05-13T08:59:24Z2009-05-24T21:30:30Z
<p>This is my current .htaccess</p>
<pre><code>Options +FollowSymLinks
DirectoryIndex index.php
RewriteEngine On
RewriteBase /product/
RewriteCond %{ENV:REDIRECT_STATUS} ^$
RewriteRule ^(.+)\.php$ ./$1/ [R=301,L]
RewriteCond %{SCRIPT_FILENAME} !-f
RewriteRule [^/]$ %{REQUEST_URI}/ [R=301,L]
RewriteRule ^contact/?$ ./contact.php [QSA,L]
</code></pre>
<p>Everything is working fine now..</p>
<ul>
<li>/product/contact return to /product/contact/</li>
<li>/product/contact.php return to /product/contact/</li>
</ul>
<p><strong>Question..</strong></p>
<ul>
<li>How to make all my .php will be /contact/ /help/ /faq/</li>
<li>Now I should to add contact.php help.php faq.php to the htaccess</li>
<li>I tried to add RewriteRule ^(.*)/$ $1.php [QSA,L] but it will be return loop.</li>
</ul>
<p>Let me know how to fix it ;)</p>
http://stackoverflow.com/questions/844817/jquery-file-extension-rewrite-load-new-url-into-hidden-div2JQuery File extension rewrite, load new url into hidden divf8xmulder2009-05-10T06:21:38Z2009-05-11T23:35:57Z
<p>I have a thumbnail gallery in a div on my sidebar. Each of these jpg images links to the larger jpg image in the main div of the same page. I have these loading in a div via fadein jquery with the following:</p>
<pre><code>$(function() {
$('.vid-gallery-thumbnail a').click(function() {
newImg = $(this).attr('href');
$('.ngg-imagebrowser img').fadeOut('slow', function(){
$('.ngg-imagebrowser').css({ height: $(".ngg-imagebrowser img").height() });
$('.ngg-imagebrowser img').attr({ src: newImg }).css({ margin: "0", visibility: "hidden" }).show();
$('.ngg-imagebrowser').animate({ height: $(".ngg-imagebrowser img").height() }, 'slow', function(){
$('.ngg-imagebrowser img').css({ visibility: "visible", display: "none" }).fadeIn('slow');
});
});
return false;
});
});
</code></pre>
<p>What I'm trying to do is rewrite that url string so the .jpg extension is dynamically rewritten as an .flv extension. That link would then be inserted into the main div area and displayed. Here is the code I've been trying to get to work.</p>
<pre><code>$(function() {
$('.vid-gallery-thumbnail a').click(function() {
if (var suffix == null) { suffix = ".flv"; }
fileExtension = $(this).attr("src").substr($(this).attr("src").lastIndexOf(".jpg"));
var newFLV = $(this).attr("src", $(this).attr("src").replace(fileExtension, suffix));
$('.ngg-imagebrowser img').fadeOut('slow', function(){
$('.ngg-imagebrowser').css({ height: $(".ngg-imagebrowser img").height() });
$('.ngg-imagebrowser img').attr({ src: newFLV }).css({ margin: "0", visibility: "hidden" }).show();
$('.ngg-imagebrowser').animate({ height: $(".ngg-imagebrowser img").height() }, 'slow', function(){
$('.ngg-imagebrowser img').css({ visibility: "visible", display: "none" }).fadeIn('slow');
});
});
return false;
});
});
</code></pre>
<p>What currently happens: Image is not rewritten, the JPG loads in the browser like a normal image link. I'm not really a Javascript programmer, so I'm out of my depth. Any ideas to help me along would be lovely! Thanks in advance.</p>
http://stackoverflow.com/questions/575009/rewriting-a-url-which-can-contain-1-or-2-querystrings-with-urlrewriter-net2Rewriting a Url which can contain 1 or 2 querystrings with URLRewriter.NET ?Barbaros Alp2009-02-22T14:39:00Z2009-05-07T13:00:48Z
<p>Hi,</p>
<p>In my project, my /PropertDetail.aspx can get 2 querystrings. </p>
<p><strong>1st</strong> one for the PropertyId <code>/PropertDetail.aspx?PropertyId=5</code></p>
<p><strong>2nd</strong> one for the Language <code>/PropertDetail.aspx?PropertyId=5&Language=2</code></p>
<p><strong>EDIT:</strong> and this page can get one of them or can get both of them, so my rewriter rule needs to handle both of them </p>
<p>So, i have set these rules to web.config</p>
<pre><code><rewriter>
<rewrite url="^(/.+(\.gif|\.png|\.jpg|\.ico|\.pdf|\.css|\.js)(\?.+)?)$" to="$1" processing="stop" />
<rewrite url="^/(.+)-(.+).aspx$" to="/PropertyDetail.aspx?PropertyId=$2" processing="stop"/>
<!--http://localhost:1562/Harika-Gayrimenkul-5.aspx-->
<rewrite url="^/(.+)-(.+)-(.+).aspx$" to="/PropertyDetail.aspx?PropertyId=$2&#038;Language=$3" processing="stop"/>
<!--http://localhost:1562/Great-Property-5-2.aspx-->
</rewriter>
</code></pre>
<p>It is all OK if there is no Language querystring, but when there is a language querystring it gets the 3rd expression as the <em>PropertyId</em> instead of <em>Language</em></p>
<p>How can i define these two rules for the same page ?</p>
<p>Thanks </p>
http://stackoverflow.com/questions/793908/what-is-the-best-practice-for-url-rewriting-a-blog-article-address2What is the best practice for URL rewriting a Blog Article Address?devmania2009-04-27T14:58:54Z2009-04-27T15:18:23Z
<p>Hi, I see many sites that have address like this:</p>
<pre><code>http://www.myblog/2008/10/10/articl-title.aspx
</code></pre>
<p><strong>Question 1</strong> </p>
<p>If I am using linq2sql to pull the article it is obvious that i must search for article in db using Startwith() function, but is this really smart and precise over searching using the ID ?</p>
<p><strong>Question 2</strong>
What is the best way to make the URL look neat like this and add the ID and make search engine friendly at the same time?</p>
<p>thanks in advance.</p>