1
vote
3answers
39 views
How to write this URL rewrite rule?
Using LAMP, is it possible to write rewrite rules to redirect URLs like the following?
http://example.com/topic/142 -> http://example.com/static/14/142.html
--Edit--
The rul …
1
vote
2answers
49 views
jQuery on the fly URL shortener
I'm looking for an on the fly URL shortener much like how tweetdeck works. I have found many jQuery and general javascript plugins that take a url and run it through a shortening s …
0
votes
1answer
21 views
solution for url rewriting on web iis server for php [closed]
I need to run url rewriting on web iis for php application .I m using mod_rewrite file for this but it does not work and page not found occured .Now I don't know what to do to res …
0
votes
2answers
26 views
URL rewrite in IIS6 - Third party tools
I have collected the following api/sdk/whatever which provide modules for doing url rewriting in IIS 5/6/7. Some are free-open source and some require $.
I haven't tried any of th …
0
votes
1answer
12 views
IE6 gzip bug and IIS7 URL Rewrite Module
We're running into the nasty sporadic IE6 bug where gzip compression enabled on js and css files makes things go bad (see http://stackoverflow.com/questions/1174032/can-i-gzip-comp …
2
votes
4answers
76 views
ASP.NET Friendly URLs
In my research, I found 2 ways to do them.
Both required modifications to the Application_BeginRequest procedure in the Global.Asax, where you would run your code to do the actual …
0
votes
1answer
29 views
URL Rewrite in DotNetNuke remove chunk of address (and read cookie?)
I am working on a DotNetNuke application using the iFinity URL Master module. (that may be irrelevant, as a solution may be platform independent)
What I have is a site with addres …
1
vote
2answers
37 views
Can i put URL rewriting http module in a folder?
I am trying to make a generic URL rewrite methods, and i want it portable so i checked this article: http://weblogs.asp.net/scottgu/archive/2007/02/26/tip-trick-url-rewriting-with- …
0
votes
3answers
40 views
How to convert URL string with multiple delimiters into another string in PHP?
So I have this sample string:
?items=3744130|1^356221|2^356222|1
extracted from a URL:
http://www.example.com/process.php?items=3744130|1^356221|2^356222|1
I need to convert …
0
votes
5answers
44 views
‘+’ symbol in htaccess
I am using htaccess. I try to pass a value in url like 'C++'.
like "http://domain.com/Details/c++/detail.html"
I am retrieving the value in htaccess like
RewriteRule ^Details/([ …
0
votes
2answers
41 views
URL rewrite - web.config error
I am getting the following error when i run my .aspx page.
Error Code0x8007000d
The configuration section 'rewrite' cannot be read because it is missing a section declaration
I h …
1
vote
2answers
38 views
Basic URL Rewrite Problem in PHP (mod_rewrite)
In my .htaccess, I have the following
RewriteEngine On
RewriteRule ^users/?$ users.php
RewriteRule ^users/([a-z]+)/?$ users.php?username=$1
Everything works as intended if …
1
vote
3answers
54 views
How to do dynamic URL Rewriting in J2EE
Hello all,
Back in my ASP.NET days, I used URLRewriter.NET to do dynamic URL Rewrites. Basically, it's an HTTPModule that intercepts page requests and rewrites the URLs according …
2
votes
2answers
32 views
Best practices for converting an existing website into a website with SEF URL
I've got a website that was created about an year ago and its been constantly revised since then. The website is coded in classic ASP, contains about ~50 pages -- some are multi-pu …
0
votes
2answers
20 views
Have some RewriteCond’s affect multiple rules
I have a website where various parts parse request URLs by themselves and some don't (e.g. a vBulletin forum). The .htaccess I have to send requests to the appropriates scripts is: …
