htaccess

Change WordPress URL Address in Admin Dashboard

Login to WordPress admin dashboard Click on Settings >> General Fill in your WordPress Address and Site Address and click Save.

To Upload A File To CPanel Manager

To upload a file through cPanel’s File Manager use the following steps: Login to cPanel and open the File Manager. Choose to open Web Root and S...Read More

Fixing .htaccess Generation Issues Permalink Problems

Fixing .htaccess Generation Issues If your installation of WordPress does not generate a .htaccess file or if it does not write the new rules onto you...Read More

HTTP error when uploading files

1) Add this to your .htaccess file at the root of your WordPress installation just before the # BEGIN WordPress line: SetEnv MAGICK_THREAD_LIMIT 1 OR ...Read More

htaccess Force Require SSL

This will force SSL, and require the exact hostname or else it will redirect to the SSL version. Useful in a /wp-admin/.htaccess file. Replace “...Read More

htaccess | WordPress 3.4 and below

# BEGIN WordPress RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes...Read More

htaccess | Multisite WordPress 3.5 and Up

RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # add a trailing slash to /wp-admin RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/...Read More

htaccess | Basic WP

# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f Rew...Read More