redirect

Redirecting native dll stdout/stderr from within C#

Hi... I'm trying to redirect the output of a third-party native dll which outputs to stdout/stderr from within C#. The output of both stdout and stderr should go to a log file. Here's my idea (x2 for two streams): Create an AnonymousPipeServerStream Get the pipe's handle via _outServer.SafePipeHandle.DangerousGetHandle() Use P/Invoke...

Point Virtural Directory in IIS7 at a different URL/Domain

When I used to use IIS 6 (or so) I'd often make a virtual directory on my local dev machine that pointed to the production assets/content directory(s). That way I could see all the most up to date content off production, without having to FTP it down from the production server. Now I'm trying to do it in IIS 7 and can't see it. Does an...

How can i see what variables are sent from flash to a php script?

Hello i was wandering how i could see what variables my flash sends to my php sccript. Is that possible? Maybe an extension or something else? i don`t know if my flash is sending any variables. My problem is that i have a flash wich i can`t change and i the flash has a form. in that form the variables are sent to a php script.. we had t...

How can I redirect the default home page to another page in CakePHP?

I need to redirect the default CakePHP home page / or (/pages/home) to /users/dashboard page I tried Router::connect('/', array('controller' => 'users', 'action' => 'dashboard')); and Router::connect('/pages/home', array('controller' => 'users', 'action' => 'dashboard')); But both are not working ...

With nginx, can I redirect the user back to a URL on their local machine?

For a particular internal purpose I would like to send people back to a url on their own machine, how exactly would I do this? I can't really do server { server_name www.yayaya.com; rewrite ^(.*) localhost:3000$1 permanent; } because that will point to the server's localhost, right? ...

Local HTTP redirects in the browser

I want to hack my browser to redirect from one website to another when I type in a URL. For example: When I type "facebook.com" into my Firefox address bar, I want it to redirect to "lite.facebook.com" Are there configuration files in Firefox that allow me to do this? Almost like a local mod_rewrite? ...

Handling redirects correctly with NSURLConnection

For the purposes of this, I'm going to pretend the original url is http://host/form and the new url is https://host/form. (Note that before I ship this, both URLs are going to be secure. However, the nonsecure-to-secure seems like a convenient redirect to test this on.) I'm accessing a web API using NSURLConnection that redirects me. Ba...

Why is this Zend Framework _redirect() call failing?

I am developing a Facebook app in Zend Framework. In startAction() I am getting the following error: The URL http://apps.facebook.com/rails%5Facross%5Feurope/turn/move-trains-auto is not valid. I have included the code for startAction() below. I have also included the code for moveTrainsAutoAction (these are all TurnController actions)...

How to redirect to the last visited page in Grails app?

Hi, I am a newbie in Grails and I am struggling with many simple issues. For instance, I don't manage to find a proper way to go back to the last visited page when I login/logout from a template view that is displayed on the top layout of the page. My last try for solving this problem was to save the ${params.controller} and ${params....

Apache RewriteRule

Hi , I have an encoding problem, using the Apache rewrite rule below: RewriteRule ^/somethingx/somethingy/somethingx_somethingz(.*) /somethingx/somethingy/somethingx_somethingy/$1 [L,R=301] The Rewrite rule works fine but except it is encoding '?' characters in the request as '%3f' characters in the response. Does anyone know why th...

I get an error when using redirectAction with struts2 and portlets inside jboss portal

I have the following struts.xml: <struts> <package name="default" namespace="/view" extends="struts-portlet-default"> <action name="index" class="com.gigi.LoginAction"> <result type="redirectAction"> <param name="actionName">showAlerts</param> <param name="namespace">/view</par...

Redirect subdomain to folder

Here's what I'm trying to do. When you type m.example.com I want users to be redirected to example.com/m/ but I would like the url in the address bar to remain m.example.com if possible. ...

How do I pass cookies on a CURL redirect?

Hi, imagine the following scenario: I open a CURL connection and pass some XML-Logindata via POST. The server answers with an 302 redirect, where the session cookies are set and redirects me to a following "welcome"-page. If I enable FOLLOWLOCATION the cookies set on the redirection-page get lost and the welcome-page fails with a "sessi...

How do I stop .htaccess Rewrite redirecting into the html folder?

I'm hosting on MediaTemple. I would like www.rhapsodicmusic.com to redirect to www.rhapsodicmusic.co.uk so that www.rhapsodicmusic.com/anypageordirectory will go to www.rhapsodicmusic.co.uk/anypageordirectory. I have the following code in my .htaccess RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^([^.:]+\.)*rhapsodicmusic\...

ColdFusion links redirection to Joomla

I need to keep my old coldfusion links in my new joolma site. I need to add a redirect mechanism in joomla like All urls like /search/commission.cfm?commID=456?t=2 should redirect to /sale?id=456 How can i do this? ...

How can Asp.net MVC treats an aspx page call and redirects it?

Hi! On the project I'm working, it previous version was build on ASP.NET classic (aspx) and now this very same project is build on ASP.NET MVC. But, some users may still call the older pages (for example, an user add the old page to his favorites) and when this happens MVC throws an error. How can I identify if an aspx page is being c...

How do I pass template context information when using HttpResponseRedirect in Django?

I have a form that redirects to the same page after a user enters information (so that they can continue entering information). If the form submission is successful, I'm returning HttpResponseRedirect(request.path) which works fine. However, I'd also like to display some messages to the user in this case (e.g., "Your data has been s...

Which is the best method to redirect users from an existing website to an existing WP blog?

Hi, I have a website with around 500 html pages. I have now posted all these html pages into my blog as blog posts. I now want to now redirect users from the page to the blog. I could do that using mod_rewrite or JavaScript Since Google will re-index these posts, which of the these two methods would be a better option for SEO? Kindly ...

How do I get the referrer URL in an ASP.NET MVC action?

How do I get the referrer URL in an ASP.NET MVC action? I am trying to redirect back to the page before you called an action. ...

technique for remembering url

Hello everyone, I am trying to achieve a functionality that is able to redirect a user to the URL/address to which he was trying to have access before logging in. For example: A user is trying to access a registered members only area. He is given the message that he is not logged in and redirected to the index page. How do I redire...