Redirecting within the same domain
Using htaccess in your root level of your web server, how you redirect one page to another is:
RewriteRule ^url-string-to-redirect$ http://www.yourdomain.com/your-new-url-string [R=301,L]
Or
Redirect 301 /path/to-old-url http://www.cyourdomain.com/path/to-new-url
To redirect the contents of a whole directory to another use the below:
RewriteRule ^subdirectory/(.*)$ /anotherdirectory/$1 [R=301,NC,L]
To redirect the contents of a whole directory to the webserving root:
RewriteRule ^subdirectory/(.*)$ /$1 [R=301,NC,L]
To redirect the contents of a subdirectory to another domain but in the same subdirectory
Redirect 301 /subdirectory http://www.anotherdomain.com/subdirectory
Make sure that the opening of the .htaccess file contains the 2 lines of code below which enables the Apache module to rewrite the URLS, then place your redirections below them
Options +FollowSymLinks RewriteEngine On
Redirecting to a different domain
Redirect URLs From Old To New Domain Using 301 Redirects In .htaccess
When you need to switch a website from an old domain to a new domain, you need to redirect all your page URLs, this is when htaccess is your friend.
The code below will create 301 url redirects for both the www and non-www version of ‘olddomain.com‘ to the new domain ‘newdomain.com‘.
Add this .htaccess file to the OLD site webroot and upload the files from the old site to the new to see a seamless switch from an old domain to a new one.
So the example below is redirecting all URLs from olddomain.com to newdomain.com, this is also the 301 redirect to use when using Googles Change of Address tool in Search Console.
RewriteEngine On RewriteCond %{HTTP_HOST} ^olddomain.com [NC,OR] RewriteCond %{HTTP_HOST} ^www.olddomain.com [NC] RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301,NC]
The above will use the non-www as preference.
RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.olddomain\.com$ RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] RewriteCond %{HTTP_HOST} !^olddomain\.com$ RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
The above here will redirect 301 all urls from one domain to another but give preference to the www version.
You can also apply this to a subdomain – so the example below is redirecting all URLs from subdomain.olddomain.com to subdomain.newdomain.com
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^subdomain.olddomain.com$ RewriteRule ^(.*)$ http://subdomain.newdomain.com/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^www.subdomain.olddomain.com$ RewriteRule ^(.*)$ http://subdomain.newdomain.com/$1 [R=301,L]
You can also mask a domain which is like a redirect but keeps the old domain URL but shows the remaining part of the new URL of the new domain – example …
RewriteEngine On RewriteCond %{HTTP_HOST} ^olddomain.com RewriteRule ^(.*) http://newdomain.com/$1 [P]
Force a Directory Folder or WebSite to go over HTTPS SSL with htaccess
To force a website to use the secure protocol SSL running the whole site over HTTPS you can make a simple edit to the .htaccess file in the document root.
RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]
To force a particular folder or directory to serve over SSL, create a .htaccess file in that folder and apply the following to it:
RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteCond %{REQUEST_URI} somefolder RewriteRule ^(.*)$ https://www.domain.com/somefolder/$1 [R,L]
This assumes SSL is enabled on the domain on an Apache Web Server with the mod_rewrite module enabled.
Redirecting WWW to non-WWW with htaccess
RewriteEngine On RewriteBase / RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
Just make sure you add it at the very top of the htaccess file.
Revisions
- December 22, 2020 @ 15:32:24 [Current Revision] by Sharing Solution
- December 22, 2020 @ 15:32:24 by Sharing Solution
- December 22, 2020 @ 15:32:02 by Sharing Solution
Revision Differences
December 22, 2020 @ 15:32:02 | Current Revision | ||
---|---|---|---|
Content | |||
Unchanged: <!-- wp:heading --> | Unchanged: <!-- wp:heading --> | ||
Unchanged: <h2>Redirecting within the same domain</h2> | Unchanged: <h2>Redirecting within the same domain</h2> | ||
Unchanged: <!-- /wp:heading --> | Unchanged: <!-- /wp:heading --> | ||
Added: <!-- wp:paragraph --> | |||
Added: <p></p> | |||
Added: <!-- /wp:paragraph --> | |||
Added: <!-- wp:paragraph --> | |||
Added: <p></p> | |||
Added: <!-- /wp:paragraph --> | |||
Added: <!-- wp:paragraph --> | |||
Added: <p></p> | |||
Added: <!-- /wp:paragraph --> | |||
Added: <!-- wp:paragraph --> | |||
Added: <p></p> | |||
Added: <!-- /wp:paragraph --> | |||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>Using htaccess in your root level of your web server, how you redirect one page to another is:</p> | Unchanged: <p>Using htaccess in your root level of your web server, how you redirect one page to another is:</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted" >RewriteRule ^url-string-to-redirect$ http://www.yourdomain.com/ your-new-url-string [R=301,L]</pre> | Unchanged: <pre class="wp-block- preformatted" >RewriteRule ^url-string-to-redirect$ http://www.yourdomain.com/ your-new-url-string [R=301,L]</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>Or</p> | Unchanged: <p>Or</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted">Redirect 301 /path/to-old-url http://www.cyourdomain.com/ path/to-new-url</pre> | Unchanged: <pre class="wp-block- preformatted">Redirect 301 /path/to-old-url http://www.cyourdomain.com/ path/to-new-url</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>To redirect the contents of a whole directory to another use the below:</p> | Unchanged: <p>To redirect the contents of a whole directory to another use the below:</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted" >RewriteRule ^subdirectory/(.*)$ /anotherdirectory/$1 [R=301,NC,L]</pre> | Unchanged: <pre class="wp-block- preformatted" >RewriteRule ^subdirectory/(.*)$ /anotherdirectory/$1 [R=301,NC,L]</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>To redirect the contents of a whole directory to the webserving root:</p> | Unchanged: <p>To redirect the contents of a whole directory to the webserving root:</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted" >RewriteRule ^subdirectory/(.*)$ /$1 [R=301,NC,L]</pre> | Unchanged: <pre class="wp-block- preformatted" >RewriteRule ^subdirectory/(.*)$ /$1 [R=301,NC,L]</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>To redirect the contents of a subdirectory to another domain but in the same subdirectory</p> | Unchanged: <p>To redirect the contents of a subdirectory to another domain but in the same subdirectory</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted" > Redirect 301 /subdirectory http://www.anotherdomain.com/ subdirectory</pre> | Unchanged: <pre class="wp-block- preformatted" > Redirect 301 /subdirectory http://www.anotherdomain.com/ subdirectory</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>Make sure that the opening of the .htaccess file contains the 2 lines of code below which enables the Apache module to rewrite the URLS, then place your redirections below them</p> | Unchanged: <p>Make sure that the opening of the .htaccess file contains the 2 lines of code below which enables the Apache module to rewrite the URLS, then place your redirections below them</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted">Options +FollowSymLinks | Unchanged: <pre class="wp-block- preformatted">Options +FollowSymLinks | ||
Unchanged: RewriteEngine On</pre> | Unchanged: RewriteEngine On</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:heading --> | Unchanged: <!-- wp:heading --> | ||
Unchanged: <h2>Redirecting to a different domain</h2> | Unchanged: <h2>Redirecting to a different domain</h2> | ||
Unchanged: <!-- /wp:heading --> | Unchanged: <!-- /wp:heading --> | ||
Unchanged: <!-- wp:heading {"level":4} --> | Unchanged: <!-- wp:heading {"level":4} --> | ||
Unchanged: <h4>Redirect URLs From Old To New Domain Using 301 Redirects In .htaccess</h4> | Unchanged: <h4>Redirect URLs From Old To New Domain Using 301 Redirects In .htaccess</h4> | ||
Unchanged: <!-- /wp:heading --> | Unchanged: <!-- /wp:heading --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>When you need to switch a website from an old domain to a new domain, you need to redirect all your page URLs, this is when <strong> htaccess</strong> is your friend.</p> | Unchanged: <p>When you need to switch a website from an old domain to a new domain, you need to redirect all your page URLs, this is when <strong> htaccess</strong> is your friend.</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>The code below will create 301 url redirects for both the <strong> www</strong> and <strong>non-www< /strong> version of ‘<strong>olddomain.com</strong>‘ to the new domain ‘<strong> newdomain.com< /strong>‘.</p> | Unchanged: <p>The code below will create 301 url redirects for both the <strong> www</strong> and <strong>non-www< /strong> version of ‘<strong>olddomain.com</strong>‘ to the new domain ‘<strong> newdomain.com< /strong>‘.</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>Add this <strong> .htaccess</strong> file to the OLD site <strong> webroot</strong> and upload the files from the old site to the new to see a seamless switch from an old domain to a new one.</p> | Unchanged: <p>Add this <strong> .htaccess</strong> file to the OLD site <strong> webroot</strong> and upload the files from the old site to the new to see a seamless switch from an old domain to a new one.</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>So the example below is redirecting all URLs from <strong> olddomain.com< /strong> to <strong> newdomain.com,< /strong> this is also the 301 redirect to use when using Googles<strong> Change of Address</strong> tool in Search Console.</p> | Unchanged: <p>So the example below is redirecting all URLs from <strong> olddomain.com< /strong> to <strong> newdomain.com,< /strong> this is also the 301 redirect to use when using Googles<strong> Change of Address</strong> tool in Search Console.</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | ||
Unchanged: RewriteCond %{HTTP_HOST} ^olddomain.com [NC,OR] | Unchanged: RewriteCond %{HTTP_HOST} ^olddomain.com [NC,OR] | ||
Unchanged: RewriteCond %{HTTP_HOST} ^www.olddomain.com [NC] | Unchanged: RewriteCond %{HTTP_HOST} ^www.olddomain.com [NC] | ||
Unchanged: RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301,NC]</pre> | Unchanged: RewriteRule ^(.*)$ http://newdomain.com/$1 [L,R=301,NC]</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>The above will use the non-<strong>www< /strong> as preference.</p> | Unchanged: <p>The above will use the non-<strong>www< /strong> as preference.</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | ||
Unchanged: RewriteCond %{HTTP_HOST} !^www\.olddomain\.com$ | Unchanged: RewriteCond %{HTTP_HOST} !^www\.olddomain\.com$ | ||
Unchanged: RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] | Unchanged: RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L] | ||
Unchanged: RewriteCond %{HTTP_HOST} !^olddomain\.com$ | Unchanged: RewriteCond %{HTTP_HOST} !^olddomain\.com$ | ||
Unchanged: RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]</pre> | Unchanged: RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>The above here will redirect 301 all urls from one domain to another but give preference to the <strong> www</strong> version.</p> | Unchanged: <p>The above here will redirect 301 all urls from one domain to another but give preference to the <strong> www</strong> version.</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>You can also apply this to a subdomain – so the example below is redirecting all URLs from <strong> subdomain.olddomain.com</ strong> to <strong> subdomain.newdomain.com< /strong></p> | Unchanged: <p>You can also apply this to a subdomain – so the example below is redirecting all URLs from <strong> subdomain.olddomain.com</ strong> to <strong> subdomain.newdomain.com< /strong></p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | ||
Unchanged: RewriteBase / | Unchanged: RewriteBase / | ||
Unchanged: RewriteCond %{HTTP_HOST} ^subdomain.olddomain.com$ | Unchanged: RewriteCond %{HTTP_HOST} ^subdomain.olddomain.com$ | ||
Unchanged: RewriteRule ^(.*)$ http://subdomain.newdomain.com/$1 [R=301,L] | Unchanged: RewriteRule ^(.*)$ http://subdomain.newdomain.com/$1 [R=301,L] | ||
Unchanged: RewriteCond %{HTTP_HOST} ^www.subdomain.olddomain.com$ | Unchanged: RewriteCond %{HTTP_HOST} ^www.subdomain.olddomain.com$ | ||
Unchanged: RewriteRule ^(.*)$ http://subdomain.newdomain.com/$1 [R=301,L]</pre> | Unchanged: RewriteRule ^(.*)$ http://subdomain.newdomain.com/$1 [R=301,L]</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>You can also <strong> mask</strong> a domain which is like a redirect but keeps the old domain URL but shows the remaining part of the new URL of the new domain – example …</p> | Unchanged: <p>You can also <strong> mask</strong> a domain which is like a redirect but keeps the old domain URL but shows the remaining part of the new URL of the new domain – example …</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | ||
Unchanged: RewriteCond %{HTTP_HOST} ^olddomain.com | Unchanged: RewriteCond %{HTTP_HOST} ^olddomain.com | ||
Unchanged: RewriteRule ^(.*) http://newdomain.com/$1 [P]</pre> | Unchanged: RewriteRule ^(.*) http://newdomain.com/$1 [P]</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:heading --> | Unchanged: <!-- wp:heading --> | ||
Unchanged: <h2>Force a Directory Folder or WebSite to go over HTTPS SSL with htaccess</h2> | Unchanged: <h2>Force a Directory Folder or WebSite to go over HTTPS SSL with htaccess</h2> | ||
Unchanged: <!-- /wp:heading --> | Unchanged: <!-- /wp:heading --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>To force a website to use the secure protocol SSL running the whole site over HTTPS you can make a simple edit to the .htaccess file in the document root.</p> | Unchanged: <p>To force a website to use the secure protocol SSL running the whole site over HTTPS you can make a simple edit to the .htaccess file in the document root.</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | ||
Unchanged: RewriteCond %{SERVER_PORT} 80 | Unchanged: RewriteCond %{SERVER_PORT} 80 | ||
Unchanged: RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]</pre> | Unchanged: RewriteRule ^(.*)$ https://www.example.com/$1 [R,L]</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>To force a particular folder or directory to serve over SSL, create a .htaccess file in that folder and apply the following to it:</p> | Unchanged: <p>To force a particular folder or directory to serve over SSL, create a .htaccess file in that folder and apply the following to it:</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | ||
Unchanged: RewriteCond %{SERVER_PORT} 80 | Unchanged: RewriteCond %{SERVER_PORT} 80 | ||
Unchanged: RewriteCond %{REQUEST_URI} somefolder | Unchanged: RewriteCond %{REQUEST_URI} somefolder | ||
Unchanged: RewriteRule ^(.*)$ https://www.domain.com/ somefolder/$1 [R,L]</pre> | Unchanged: RewriteRule ^(.*)$ https://www.domain.com/ somefolder/$1 [R,L]</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>This assumes SSL is enabled on the domain on an Apache Web Server with the mod_rewrite module enabled.</p> | Unchanged: <p>This assumes SSL is enabled on the domain on an Apache Web Server with the mod_rewrite module enabled.</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> | ||
Unchanged: <!-- wp:heading --> | Unchanged: <!-- wp:heading --> | ||
Unchanged: <h2>Redirecting WWW to non-WWW with htaccess</h2> | Unchanged: <h2>Redirecting WWW to non-WWW with htaccess</h2> | ||
Unchanged: <!-- /wp:heading --> | Unchanged: <!-- /wp:heading --> | ||
Unchanged: <!-- wp:preformatted --> | Unchanged: <!-- wp:preformatted --> | ||
Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | Unchanged: <pre class="wp-block- preformatted" >RewriteEngine On | ||
Unchanged: RewriteBase / | Unchanged: RewriteBase / | ||
Unchanged: RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] | Unchanged: RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] | ||
Unchanged: RewriteRule ^(.*)$ http://%1/$1 [R=301,L]</pre> | Unchanged: RewriteRule ^(.*)$ http://%1/$1 [R=301,L]</pre> | ||
Unchanged: <!-- /wp:preformatted --> | Unchanged: <!-- /wp:preformatted --> | ||
Unchanged: <!-- wp:paragraph --> | Unchanged: <!-- wp:paragraph --> | ||
Unchanged: <p>Just make sure you add it at the very top of the htaccess file.</p> | Unchanged: <p>Just make sure you add it at the very top of the htaccess file.</p> | ||
Unchanged: <!-- /wp:paragraph --> | Unchanged: <!-- /wp:paragraph --> |
Note: Spaces may be added to comparison text to allow better line wrapping.
No comments yet.