Akhil Dev

Akhil Dev

.htaccess

Install Joomla on an Ubuntu 18.04_akhil-dev

How to Install Joomla on an Ubuntu 18.04

Step 1: Install Joomla Since the download will be a zip archive, you should begin by installing the unzip tool. $ sudo apt-get install unzip Next, cd to the ‘/tmp’ directory and download the latest version of Joomla from the official website. $ cd /tmp $ wget https://downloads.joomla.org/cms/joomla3/3-8-10/Joomla_3-8-10-Stable-Full_Package.zip Joomla will be downloaded and stored under …

How to Install Joomla on an Ubuntu 18.04 Read More »

Default WordPress .htaccess File_akhil-dev

Default WordPress .htaccess File

Default WordPress .htaccess File Default .htaccess File Open the new WordPress .htaccess file from root folder and paste the following 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