Last active
April 27, 2019 11:32
-
-
Save AmrutHandral/bfaa0516088081c670f13aea7328c783 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Permalink code | |
| # BEGIN WordPress | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.php [L] | |
| </IfModule> | |
| # END WordPress | |
| Redirecting WordPress to a Folder | |
| RewriteEngine on | |
| RewriteCond %{HTTP_HOST} ^(www.)?domain.com$ | |
| RewriteCond %{REQUEST_URI} !^/subdirectory/ | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule ^(.*)$ /subdirectory/$1 | |
| RewriteCond %{HTTP_HOST} ^(www.)?domain.com$ | |
| RewriteRule ^(/)?$ subdirectory/index.php [L] | |
| DirectoryIndex | |
| DirectoryIndex index.php index.html /index.php | |
| options -indexes | |
| 301 Redirects for .htaccess | |
| #General code | |
| RewriteEngine on | |
| RewriteCond %{HTTP_HOST} ^domain.com [NC,OR] | |
| RewriteCond %{HTTP_HOST} ^www.domain.com [NC] | |
| RewriteRule ^(.*)$ http://domain.com/$1 [L,R=301,NC] | |
| #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 | |
| Redirect www to non-www Domain | |
| RewriteEngine On | |
| RewriteCond %{HTTP_HOST} ^www.domain.com [NC] | |
| RewriteRule ^(.*) http://domain.com/$1 [L,R=301] | |
| Redirect non-www to www URL | |
| RewriteEngine On | |
| RewriteCond %{HTTP_HOST} ^domain.com [nocase] | |
| RewriteRule ^(.*) http://www.domain.com/$1 [last,redirect=301] | |
| Force HTTPS code | |
| RewriteEngine On | |
| RewriteCond %{HTTPS} off | |
| RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]] | |
| Rediect to Mask the URL | |
| <frameset rows="100%,*" border="0" frameborder="0"> | |
| <frame name="__main" src="http://www.domain.com/" noresize frameborder="0"> | |
| </frameset> | |
| php 5.2 | |
| # Use PHP5 as default | |
| AddHandler application/x-httpd-php5 .php | |
| php 5.4 single | |
| # Use PHP5.4 Single php.ini as default | |
| AddHandler application/x-httpd-php54s .php | |
| php 5.6 single | |
| # Use PHP5.6 Single php.ini as default | |
| AddHandler application/x-httpd-php56s .php | |
| <IfModule mime_module> | |
| AddType application/x-httpd-ea-php56 .php .php5 .phtml | |
| </IfModule> | |
| php 7.0 single | |
| # Use PHP7 Single php.ini as default | |
| AddHandler application/x-httpd-php70s .php | |
| <IfModule mime_module> | |
| AddType application/x-httpd-ea-php70 .php .php7 .phtml | |
| </IfModule> | |
| ## | |
| #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.domain.com/index.php?id=1 | |
| Desired destination URL: | |
| http://www.domain.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.domain.com/sub-dir/index.php?id=1 | |
| Desired destination URL: | |
| http://www.domain.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.domain.com/old-page/ | |
| Desired destination URL: | |
| http://www.domain.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.domain.com/index.php?id=100 | |
| Desired destination URL: | |
| http://www.domain.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.domain.com/index.php?category=fish | |
| Desired destination URL: | |
| http://www.domain.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} ^domain-old\.com$ [NC] | |
| RewriteRule ^(.*)$ http://www.domain-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.domain-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] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment