redirect

Redirect to views according to form selection

User registration in my application is performed in steps. After submitting the form, some validation is performed and then register_prompt view is called. It renders a form, with two options - 'ok' and 'cancel'. Clicking ok will run registration, and clicking cancel should redirect to main page. Problem is that no matter which of the tw...

Subdirectory on a different host

I've got a site www.example.com on one server. I'd like to create www.example.com/blog on another server/host. A) Can I do this? B) How can I do this? I've read a bit on using Apache's mod_proxy, proxypass, and ProxyPassReverse, but I'm not gifted enough with Apache or server mgt to know if I'm on the right track or not. Or, if there...

how do you redirect to a page as soon as a user enables their javascript?

i was wondering if there was some sort of event triggered when javascript is enabled in a browser (ie. in firefox, tools->options->check off enable javascript-> click ok). i want to redirect a user to a page when this happens. any ideas? Thanks! EDIT: i've put an iframe into the page but am not getting the alert (after i enable javascr...

How do I redirect a domain to a specific "landing page"?

My client has several parked domains. She wants those domains to point to specific pages in her main site. For example: Let's pretend she has a page on her main site about bedroom redecorating. That page is located at www.mainsite.com/bedrooms/ And let's say she has a parked domain called www.999bedrooms.com/ She wants to redirect tha...

Need to redirect all traffic to https

I want to redirect any traffic that goes to http://example.com to https://example.com same for http://example.com/about to https://example.com/about I thought it would be something like this: RewriteCond %{HTTP_HOST} ^example\.com$ [NC] RewriteRule ^(.*)$ https://example.com/$1 [R=301,L] ...

multiple redirects with favicon crashing apache, using PHP5 and Kohana

I am not sure who the culprit is, but here's the apache error log using LogLevel Debug: [Tue Jul 13 11:51:18 2010] [debug] core.c(3069): [client 68.178.109.243] redirected from r->uri = /index.php/favicon.ico/favicon.ico/favicon.ico/favicon.ico/favicon.ico/favicon.ico/favicon.ico/favicon.ico [Tue Jul 13 11:51:18 2010] [debug] core.c(30...

Browser redirect tool?

I need to create a tool that sits in Windows in the background and everytime a certain web page is entered, e.g. www.google.com, the tool should automatically redirect to another site. (Not intended to be a virus, I promise. There is actually a genuine need for this for a client.) Is this feasible? I know there are lots of viruses/spyw...

Redirect visitor and create new referrer info? (some PHP)

I have 2 websites -- website A is the primary 'marketing' site that receives traffic and website B is the site where people make a purchase. Site B's reporting system provides me with the referring URL from site A that resulted in a purchase. Site A has a variety of call to action links that go to site B, and I would like to measure wh...

DotNetNuke/.NET Ajax Redirect Issue

I'm working on a DotNetNuke site which has both a staging and production server. The issue right now is with a specific NB_Store menu, but I believe is actually an issue throughout the site. On production, clicking the edit links in the product admin works fine. It appears that clicking the edit buttons sends an AJAX post request back t...

Apache Rewrite: Always use HTTPS (how to add an exception)

On mydomain.com, I currently keep all of my apache conf files in: /etc/httpd/conf.d/ In there I have a file called alwaysHttps.conf that contains: RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} I have a bunch of virtualhosts, and for one domain on the site: myotherdomain.com I would li...

Forwarding naked domains with full URL structure intact on GAE

So I followed Nick Johnson's instructions on how to forward a naked domain: http://blog.notdot.net/2009/12/Naked-domains-on-App-Engine and configured GoDaddy to use a 301 redirect to the "www" subdomain of my site. However, the problem I'm still having is that when I enter http://mydomain.com/foo/bar, it gets forwarded to http://www.m...

Redirect in PHP

Hello, I have a typical mail.php script, which uses the mail() function. After the user inputs information into a typical HTML form, I have the mail() function send the email to the desired email [with mail($email_of_client) etc etc] My question is this: After the email sends, I want the user to be redirected to a ThankYou page (run u...

Should I use 301 for in-site redirects?

We would like to redirect to a localized version of our entry webpage if IP is detected to be from a certain country. We are using ASP.Net, GeoLite Country Db (it's a very small, 1Mb downloadable DB at time of writing this question). So, most users would get english content, but if they come from a local place, they would have local con...

How make Response.Redirect inside a Asynchronous call method - c#

I have a try-catch inside a method that is called asynchronously. When an error occurs, inside the catch I have a Response.Redirect because I need to redirect to the login page. This is my issue. But my problem doesn't involve things that expire, so the idea of a timer isn't the best way to resolve it. ...

asp.net save textbox on redirect

I am new to ASP.net and I am trying to save the state of some textboxes on redirect. I have a dashboard interface with drilldown. The main dashboard page has a date range option (textbox for both start date and end date) for the information displayed and I need to save the date range chosen by the user. I know that I can put the info int...

handling a redirect from a cross-origin post in AJAX

We are trying to create a RESTful API that will be hosted on server x.foo.com. Client html applications (built in jquery) will be hosted on y.foo.com. I am dealing with cross-domain issues by setting the Access-Control-Allow-Origin header as described here http://www.w3.org/TR/cors/. So far so good, and I can now successfully make AJAX...

drupal registration redirect and user details

After registration the user is redirected to a welcome page . How to get display the respective user details in redirected(welcome) page?. for ex: welcome username . how to get user name in redirected page ...

JSP unable to find Struts2 action

Hi All, I use resin 3.0.25 web server for my application. Earlier application's context path was "/myApp". But now I have deployed it as ROOT, So I changed the context path to "". I have an index.jsp which is the welcome page of the application and it does nothing except for redirecting to my struts 2 action. When the context p...

Direct page to other page

Hi, I am using HTML and would like to know why when I enter <a class="button flip" href="index2.html">List View</a> it tries to find the original_page_url#index2.html thanks Charlene ...

ASP.NET customErrors with mode=remoteOnly and global.asax handling exceptions

I have custom errors set in the web config file as follows: <customErrors mode="RemoteOnly" defaultRedirect="GenericError.aspx" /> Fine and dandy... I like that mode="RemoteOnly" facilitates development... For unhandled exceptions, I have in global.asax: Sub Application_Error(ByVal sender As Object, ByVal e As EventArgs) Respons...