redirect

301 Redirects, and the correct regex to go with it

Hi Guys, I have several URLs that I want to redirect to the same place, however these are dynamic URLs. The structure is something like this: http://www.mysite.com/declaration/list?[query_string] What I think would be ideal for this situation is to use some regex in my .htaccess file to redirect all these links to the sites home p...

Redirect for .htaccess Wildcard Subdomains

Hello, I've been trying to figure out a way to redirect requests for wildcard subdomains to a specific folder ( called 'core' ) and calling the requested page/file from that specific folder. For example, making all calls to -http://johnny5.mysite.net redirect to -http://mysite.net/core/, or -http://docholliday.mysite.net/login.php redir...

Monitoring for postbacks with PHP?

Hi, I have a PHP page with content that my users can view. When this page receives a POST request from a certain external URL, I'd like to redirect the user to another page. The problems I'm' having are: How can I monitor the page for requests being sent in an efficient way? How can I actually redirect them since header() doesn't work...

How do I redirect a not found FLV file to a 404 FLV file, using .htaccess?

Using .htaccess, how do I permanently redirect all not found *.flv files in one directory to a 404.flv file in the same directory. For example: If this file is not found: example.com/flv/*.flv Use this file: example.com/flv/404.flv Here's what I have so far (I'm very bad): RewriteCond /flv/(.*).flv !-f RewriteRule ^ /flv/404.flv [L,R...

How to hook a function for a particular shared ELF library?

LD_PRELOAD hooks some functions for the entire process, but I need to hook a particular function for only one dynamically linked library by its name. ...

[grails] Redirect after login?

Hi all, in my Grails app I have a couple of simple security filters (please note it's just a prototype, not a commercial app: securityCheckFilter(controller:'overview', invert:true) { before = { if(!session?.gaSession?.gaUser) { flash.message = "You are not authorised to see this page. Ple...

How can I have multiple navigation paths with Django, like a simplifies wizard path and a full path?

Lets say I have an application with a structure such as: System set date set name set something Other set death ray target calibrate and I want to have "back" and "next" buttons on a page. The catch is, if you're going in via the "wizard", I want the nav path to be something like "set name" -> "set death ray target" -> "set ...

Basic 301 Redirection Help

I am trying to learn redirection for a WordPress site of my own. I am testing the concept of redirecting a single WordPress post by using a dummy site. However, it doesn't seem to be working for me. I am trying to redirect www.perfectmatchmaker[dot]org/finding-the-right-matchmaker to www.perfectmatchmaker[dot]org/finding-the-perfect...

How to prevent redirect loop with ManagedFusion URL Rewriter?

Using ManagedFusion's URL rewriter, I have the following code. When requesting / on the Visual Studio development server, I get a redirect loop, however the same code works on a production IIS server when I upload the site to it... why is this? I have <defaultDocument enabled="false"/> in the web.config. RewriteRule ^/(Default|index|hom...

multiple redirect??

Ok, i won't go into the full details (too much to explain) but here is what i am trying to do. I have a button on a webpage (we'll call page-1) that links to a page (we'll call it page-2). This page opens in the same window. However, i need the page (page-2) that opens to open up a new window with another page (we'll call this one pag...

Redirect with htaccess for images onto another server without redirect looping

Hey guys, I currently have a host where my main site is hosted on. I have set up nginx on another server to mirror/cache files being requested if it doesn't have it already, in particular images and flv videos. For example: www.domain.com is my main site. www.domain.com/video/video.flv www.domain.com/images/1.png I would like to as...

Zend remove anchor text in url redirect

I have a form that is using an anchor name as it's action so that when the form is submitted it is it goes straight back to the form (for example 'www.domain.com/page#contact-form). The idea is if there are any errors then it'll go straight to the form (that's near the bottom of the page) so you can see the errors and continue filling in...

URL rewrite using .htaccess

I need a url like mydomain.com/myname/?action=post&data=10 here in a single php page(user.php) i need all 'myname','post' and '10' as get method variables. How can i get it using .htaccess???... plz help me..... ...

How can I redirect the stdout of ironpython in C#?

public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button3_Click(object sender, EventArgs e) { try { var strExpression = @" import sys sys.stdout=my.write print 'ABC' "; var engine = Python.CreateEngine...

how to mirror a site converting all links to point to local version even those who end up with 301:moved permanently

Hi, I'm searching for a console application to make a local copy of a site. I need that it not only to convert all valid links to point to local files, but also those, which are redirected. After a lot of googling the best option I managed to find is "wget --recursive --convert-links --level=20 --no-clobber --html-extension --no-parent...

HTACCESS: *.subdomain.domain.tld redir to subdomain.domain.tld/*

Hi guys, sorry for the vague question title. But anyways, I have here a subdomain which i wish to pass on wildcard sub-subdomains and make a proper htaccess redirect to a sub-folder (relative to the server root) equivalent to the wildcard value such that *.subdomain.domain.tld will redirect to subdomain.domain.tld/* where * = wildca...

.htaccess: Forward ALL requests to another site

Hello. I have to forward an existing website to another one. I want to forward each and every request on the old site to the root of the new site. Example: http://oldsite.tld/index.php?mode=foo&amp;action=bar should be forwarded to http://newsite.tld/ and not http://newsite.tld/index.php?mode=foo&amp;action=bar. Is this possible with...

Domain redirect problem with JQuery/JavaScript

I got a strange problem. I have a fullscreen image scaler javascript (as GOTOCHINA website) that works very well on my website. Then, I purchased a domain redirect pointing on my website and when redirecting suddenly internet explorer 7 and internet explorer 8 give me this error Messagge: is not a valid argument. Line: 34 Char:...

mod_rewrite: remove trailing slash (only one!)

Hello. I use mod_rewrite/.htaccess for pretty URLs. I'm using this condition/rule to eliminate trailing slashes (or rather: rewrite to the non-trailing-slash-URL, by a 301 redirect; I'm doing this to avoid duplicate content and because I like URLs with no trailing slashes better): RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{RE...

PHP Session timeout

I am creating a session when a user logs in like so: $_SESSION['id'] = $id; How can I specify a timeout on that session of X minutes and then have it perform a function or a page redirect once it has reached X minutes?? EDIT: I forgot to mention that I need the session to timeout due to inactivity. ...