PDA

View Full Version : What method do you use to redirect a page ?



bangalorewebgur
11-26-2016, 09:10 AM
What method do you use to redirect a page ?

LuckyLocksmiths
12-06-2016, 09:32 AM
*Find out if your website is running on an Apache server.
*Locate and download your .htaccess file.
*Create an .htaccess file.
*Type in the code.
*Set the new URL destination.
*Save the new .htaccess file.
*Create a backup.
*Upload the modified file to the root directory of the old domain.

alpa
12-07-2016, 09:15 AM
In most instances, the 301 redirect is the best method for implementing redirects on a website.identified a page as compatible, it is generally best to use a 302 redirect.

tctsinc8
12-08-2016, 05:40 AM
Hello Friends,

Redirection is the process of forwarding one URL to a different URL. There are three main kinds of redirects: 301, 302, and meta refresh.

hostmayo
12-11-2016, 09:09 AM
you can use the following approaches to redirect to another page
1. Use Apache rewrite rule in .htaccess
2. Use php code header("Location : url2") to redirect to another page
3. use your Cpanel url forwarder to direct the users to another page.
All require just googling to completely implement it.

swlocums
12-17-2016, 06:38 AM
Create an .htaccess file. If no .htaccess exists in your root folder currently, you can create one using an application like Notepad (or a similar plain text application). The code for the file is contained in the next step.

Make sure that when you save your .htaccess file it begins with a “.”
Note that this file has no tail extension (e.g. “.com” or “.txt”)

luffy268
12-18-2016, 09:45 AM
Here is something you might interested in:
css-tricks.com/redirect-web-page/

Sonika11Mehra
12-19-2016, 03:53 AM
A URL redirect is a web server function that sends a user from one URL to another. Redirects commonly take the form of an automated redirect that uses one of a series of status codes defined within the HTTP protocol.

There are several types of redirects available to Web developers, including manual redirects, HTTP 3xx series status codes, server-side scripts, JavaScript, frame redirects and meta tag refreshes.

A URL redirect may also be known as an HTTP code 3xx redirect, URL forwarding, domain redirection, and domain forwarding.

A 301 redirect also is often described as a "change of address form" you might get at a post office. If someone doesn't know you moved, you want to make sure all your mail is forwarded to your new place.

aegisinfoways
12-23-2016, 02:18 AM
Re-direction is the procedure of sending one URL to a different URL. There are three primary types of redirects: 301, 302, and meta refresh.

intqc[dot]in
12-26-2016, 01:43 AM
There are various redirect methods available as follows
In Client-side development language : HTML, JavaScript
In Server-side development language: PHP, .NET, etc
Type of web server : Apache, Nginx, Lighttpd
Web-hosting control panel: cPanel , plesk, etc

mikerock
01-11-2017, 10:46 AM
It depends upon the type of server on which your website is hosted, So
if website is hosted on IIS server, then we need to create a web config file and ad the particular rule of redirection in that web config
if website is hosted on Linux server, then we need to create a ht access file and add the redirection rule for the particular web page
There is one more method which can be used for redirection, known as meta refresh tag, but this tag is least used in the above mentioned methods.

AdvanceSolution
01-12-2017, 12:50 PM
just follow this link and create redirection code http://www.htaccessredirect.net/

maherafrasiab
01-15-2017, 02:54 AM
it is best to use 301 and 302 redirection if you want to consider seo of your site

Sankara Vignesh
06-09-2017, 06:44 AM
Redirection is the process of forwarding one URL to a different URL. There are three main kinds of redirects: 301, 302, and meta refresh.

Types of Redirects

301, "Moved Permanently"—recommended for SEO
302, "Found" or "Moved Temporarily"
Meta Refresh

kunnusingh
06-10-2017, 07:04 AM
I use permanent .htaccess redirect code to redirect my pages to another page.

Sometimes I use temporary code and remove it once my work is completed.

RashidS45
06-14-2017, 06:23 AM
For redirecting a page you can use the three primary types of redirects: 301, 302, and meta refresh.

Trupti42
06-16-2017, 06:17 AM
A redirect in a website means to send users and search engines to another url from one which they originally requested .
Here are the type of redirects.
1.301, "Moved Permanently"—recommended for SEO
2.302, "Found" or "Moved Temporarily"
3.Meta Refresh

Rajdeep Bose
06-21-2017, 03:03 AM
301 redirect is the most efficient and Search Engine Friendly method for webpage redirection