Redirect code from http to https by using .htaccess?
Your can redirect all http (Non-secure) URL to https by using following code in .htaccess file. RewriteEngine on Options +FollowSymLinks RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^.*$ […]
Your can redirect all http (Non-secure) URL to https by using following code in .htaccess file. RewriteEngine on Options +FollowSymLinks RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^.*$ […]
Your can redirect all https (Secure) URL to http by using following code in .htaccess file. RewriteEngine on Options +FollowSymLinks RewriteCond %{SERVER_PORT} !^80$ RewriteRule ^.*$ […]
To disable the Directory listing for folders you need to create the .htaccess file under the each an every folder under which you want to […]
If you are receiving 403 error message after browsing your domain than check the Apache error logs. root@admin[~]tail -f /usr/local/apache/logs/error_log [Tue Nov 17 19:38:32 2009] […]
You can repair the database table manually from shell by using following command. root@admin[~]mysql>mysql –u databaseusername –p databasename For example if we are using database […]
Copyright © 2023 Kaizen Software Solutions. All rights reserved.