Grow Your Business Online.

Cara mengalihkan subfolder WordPress dari file .htaccess

Sebelum melakukan perubahan di file .htaccess, anda perlu menyimpan copy file backup .htaccess ke lokal PC anda..

 

File .htaccess anda kurang lebih akan seperti dibawah ini : 

 

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

==================================================

 

Add a redirect for complete folder:

 

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

Redirect 301 /oldfolder http://www.yourdomain.com/newfolder

==================================================


Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.