Frequently Asked Questions
Wordpress htaccess file
IntelLinx supplies "Widgets" for integrating the public facing pages of your WWW site.
Sometimes the widgets are not properly resized when a web site is loaded on the browser without "www".
In WordPress you can change your htaccess file as shown below to force the addition of www into the url.
Unless you have a web hosting package or engage our web development team we do perform this task for you. Please make sure to backup your existing .htaccess before changing it.
INTELLINX IS NOT RESONSIBLE FOR ANY ERRORS CAUSED WHILE EDITING THE FILE.
THIS SAMPLE BELOW SHOULD BE VERIFIED EACH TIME BEFORE USE.
# BEGIN WordPress
RewriteEngine On
RewriteBase /
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} !^(www\.|$) [NC]
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress
Sometimes the widgets are not properly resized when a web site is loaded on the browser without "www".
In WordPress you can change your htaccess file as shown below to force the addition of www into the url.
Unless you have a web hosting package or engage our web development team we do perform this task for you. Please make sure to backup your existing .htaccess before changing it.
INTELLINX IS NOT RESONSIBLE FOR ANY ERRORS CAUSED WHILE EDITING THE FILE.
THIS SAMPLE BELOW SHOULD BE VERIFIED EACH TIME BEFORE USE.
# BEGIN WordPress
RewriteEngine On
RewriteBase /
Options +FollowSymlinks
RewriteCond %{HTTP_HOST} !^(www\.|$) [NC]
RewriteRule ^ http://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
# END WordPress