Skip to content

Instantly share code, notes, and snippets.

@ScottPhillips
Created February 2, 2012 04:30
Show Gist options
  • Save ScottPhillips/1721489 to your computer and use it in GitHub Desktop.
Save ScottPhillips/1721489 to your computer and use it in GitHub Desktop.
Common .htaccess Redirects
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/
#Redirect a sub folder to another site
Redirect 301 /subfolder http://www.domain.com/
#This will redirect any file with the .html extension to use the same filename but use the .php extension instead.
RedirectMatch 301 (.*)\.html$ http://www.domain.com$1.php
##
#You can also perform 301 redirects using rewriting via .htaccess.
##
#Redirect from old domain to new domain
RewriteEngine on
RewriteBase /
RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
#Redirect to www location
RewriteEngine on
RewriteBase /
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
#Redirect to www location with subdirectory
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} domain.com [NC]
RewriteRule ^(.*)$ http://www.domain.com/directory/index.html [R=301,NC]
#Redirect from old domain to new domain with full path and query string:
Options +FollowSymLinks
RewriteEngine On
RewriteRule ^(.*) http://www.newdomain.com%{REQUEST_URI} [R=302,NC]
#Redirect from old domain with subdirectory to new domain w/o subdirectory including full path and query string:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI} ^/subdirname/(.*)$
RewriteRule ^(.*) http://www.katcode.com/%1 [R=302,NC]
Rewrite and redirect URLs with query parameters (files placed in root directory)
Original URL:
http://www.example.com/index.php?id=1
Desired destination URL:
http://www.example.com/path-to-new-location/
.htaccess syntax:
RewriteEngine on
RewriteCond %{QUERY_STRING} id=1
RewriteRule ^index\.php$ /path-to-new-location/? [L,R=301]
Redirect URLs with query parameters (files placed in subdirectory)
Original URL:
http://www.example.com/sub-dir/index.php?id=1
Desired destination URL:
http://www.example.com/path-to-new-location/
.htaccess syntax:
RewriteEngine on
RewriteCond %{QUERY_STRING} id=1
RewriteRule ^sub-dir/index\.php$ /path-to-new-location/? [L,R=301]
Redirect one clean URL to a new clean URL
Original URL:
http://www.example.com/old-page/
Desired destination URL:
http://www.example.com/new-page/
.htaccess syntax:
RewriteEngine On
RewriteRule ^old-page/?$ $1/new-page$2 [R=301,L]
Rewrite and redirect URLs with query parameter to directory based structure, retaining query string in URL root level
Original URL:
http://www.example.com/index.php?id=100
Desired destination URL:
http://www.example.com/100/
.htaccess syntax:
RewriteEngine On
RewriteRule ^([^/d]+)/?$ index.php?id=$1 [QSA]
Rewrite URLs with query parameter to directory based structure, retaining query string parameter in URL subdirectory
Original URL:
http://www.example.com/index.php?category=fish
Desired destination URL:
http://www.example.com/category/fish/
.htaccess syntax:
RewriteEngine On
RewriteRule ^/?category/([^/d]+)/?$ index.php?category=$1 [L,QSA]
Domain change – redirect all incoming request from old to new domain (retain path)
RewriteEngine on
RewriteCond %{HTTP_HOST} ^example-old\.com$ [NC]
RewriteRule ^(.*)$ http://www.example-new.com/$1 [R=301,L]
If you do not want to pass the path in the request to the new domain, change the last row to:
RewriteRule ^(.*)$ http://www.example-new.com/ [R=301,L]
#From blog.oldsite.com -> www.somewhere.com/blog/
retains path and query, and eliminates xtra blog path if domain is blog.oldsite.com/blog/
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_URI}/ blog
RewriteRule ^(.*) http://www.somewhere.com/%{REQUEST_URI} [R=302,NC]
RewriteRule ^(.*) http://www.somewhere.com/blog/%{REQUEST_URI} [R=302,NC]
@techanzone
Copy link

Minecraft Jenny Mod is a mod of Minecraft which provides a virtual girlfriend in the game. You can do everything with the girlfriend.

@techanzone
Copy link

To get free food from McDonalds in Germany you have to complete the Mcdonalds feedback

@Benstock55
Copy link

A Lightroom MOD APk is a modified version of the Adobe Lightroom mobile app designed to bypass subscription fees or unlock premium features for free. While it may offer advantages such as access to advanced editing tools, presets, and an ad-free experience, using a MOD APK comes with significant risks. These modified apps are typically distributed through unofficial channels, posing security risks like malware or viruses. Additionally, using such apps violates Adobe’s terms of service and copyright laws, and users do not receive official support or updates. For a secure and reliable experience, it’s best to use the official Adobe Lightroom app, which provides a free version with basic features and a subscription for advanced tools.

@SaqibRana919
Copy link

[](Surah Al-Mulk,](https://quranpdf.online/) the 67th chapter of the Qur'an, holds a special place in Islamic tradition and spirituality. This Meccan surah, consisting of 30 verses (ayat), is frequently recited by Muslims for protection, guidance, and the remembrance of Allah's dominion over all creation. The name "Al-Mulk" translates to "The Sovereignty" or "The Kingdom," highlighting the primary theme of the surah: the absolute authority and control of Allah over the universe. The surah begins with a proclamation of the blessedness of Allah, the One in Whose hand is the dominion of all things. This opening sets the tone for the rest of the chapter, emphasizing the majesty and supreme power of Allah. It reminds believers that Allah is the Creator and Sustainer of everything, possessing ultimate control over life and death. This concept is reinforced throughout the surah, urging the faithful to recognize and submit to Allah's unparalleled authority significant portion of Surah Al-Mulk focuses on the creation of the heavens and the earth as signs of Allah's power and wisdom. It encourages contemplation of the natural world, urging humans to observe the perfection and order inherent in creation. The repeated exhortation to look again and again at the sky, to see if there are any flaws, serves as a powerful reminder of the meticulous and flawless design orchestrated by Allah. This reflection on the universe aims to foster a deeper sense of awe and gratitude towards the Creator, strengthening the believer's faith.[)

@metatvapk
Copy link

Download MetaTV APK App on your Android devices.

@cloren33
Copy link

Kepala Bergetar, or head tremors, involve involuntary shaking of the head. They can stem from neurological conditions, stress, or fatigue. Proper diagnosis by a healthcare professional is essential to determine the cause and appropriate treatment, which may include medication, therapy, or lifestyle adjustments.

@Oscrbl
Copy link

Oscrbl commented Jul 28, 2024

Thanks for your information.
mencari informasi lengkap di rakyatresah

@aqi113
Copy link

aqi113 commented Jul 31, 2024

Redirects pagename.php to pagename.html on the same domain with a 301 status (permanent redirect).

@morgen25
Copy link

morgen25 commented Jul 31, 2024

Redirects the entire site to a subfolder on the same domain.

@Alikhan804
Copy link

InstaPro App is a modified version of Instagram Provides Extra Features Like Hide Stories, App Lock, Lots Of Font Styles and Hide Stories etc. https://instaproapp.io/

@Alikhan804
Copy link

Alikhan804 commented Aug 2, 2024

Download GB WhatsApp (Updated) Latest Version 2024 Anti-Ban. You Can Use without Any Ban issue. Enjoy Latest GBWhatsApp OFFICIAL With Extra Features. https://gbwhatsappdownload.net.in/

@Alex-dot1
Copy link

I've been using Freecine apk for a while now, and it has quickly become my go-to app for streaming movies and TV shows. The interface is user-friendly and makes it easy to browse through the extensive library of content. I especially appreciate the high-quality video streaming and the regular updates that keep the app running smoothly.

@myasiantvso
Copy link

Official MyAsianTV watch, free download and get update about latest drama releases in Korean, Taiwanese, Hong Kong, and Chinese with English subtitles. https://myasiantv.si/

@GBWA002
Copy link

GBWA002 commented Aug 14, 2024

I come here for these codes for my site of GBWhatsApp

@Preethi121121
Copy link

Instagram Pro pops up to be a strong alternative to Instagram's official app, with features such as photo and video downloads, HD visuals, and extensive follower tracking.

@Samrina112
Copy link

In "Car Parking Multiplayer," the fastest car can vary based on updates and modifications made to the game. However, generally, high-performance cars like the Bugatti Chiron, Lamborghini Aventador, or other hypercars are among the fastest in the game.

@hextor1
Copy link

hextor1 commented Aug 16, 2024

sssyoutube es una herramienta fácil de usar para descargar vídeos de YouTube y convertirlos a varios formatos, ofreciendo un servicio rápido y fiable para todos los usuarios

@kashmala32432
Copy link

Whatsapp mod apk Download for advanced new latest features

@alinccess
Copy link

If you're looking for best WhatsApp mod so you can visit apkwa to get best WhatsApp Mods.​

@techanzone
Copy link

If you're looking for names for your nnew-born baby, you should try Japanese Names that Mean Sun. These names are unique and contain the sun meaning in them.

@techanzone
Copy link

Smart play apk is the best Netflix alternative. You can watch latest movies, dramas, and much more. Also, this app provides you a unique feature that you can download any video in the application so that you can watch it later.

@techanzone
Copy link

Hamraaz web is a platform for the help of indian army soldiers. They can download payslips, and monitor their duties. Also, they can know about their duties via that hamraaz patform.

@medicalschool12
Copy link

Yacine TV is a popular streaming service offering a diverse range of live TV channels, including sports, news, and entertainment, catering to a wide audience with its extensive, user-friendly interface.

@leoa69
Copy link

leoa69 commented Aug 20, 2024

Can anyone suggest me should I download the YouTube Vanced from https://youtubevanced.org/

@juli5203
Copy link

i have already face this status on my site.

@aishamushtaq44
Copy link

Users can download reels, IGTV, videos, and high-quality photographs with the instander app download InstaMode. Additionally, it facilitates the testing of premium features like No Ads, Copy The biography. https://instanderapk.pro/

@LuimaFuelis
Copy link

Those content creator who are looking a reliable video editing app may go for CapCut APK download process. This video editing has various options to give a new look to video. For example, they can implement a layer, transition, or text to their videos. Further, unpaid version is watermark free whih is plus point of this video editing application.

@williamWLJL
Copy link

When thinking pikashow about Shala Darpan, a person might appreciate its role in fostering communication among teachers, students, and parents in Rajasthan. They may see it as a significant step toward enhancing educational quality, promoting transparency, and encouraging collaboration to support students' academic success and development.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment