When wordpress ruining on local server like as ubuntu 16.04. Then I get some error message such as “The requested URL was not found on this server.” I think it’s permalinks problem. But I change wordpress permalinks for got Settings / Permalinks and then select sample post. But I can’t fix this error message from wordpress on local server.
★ How To Install WordPress (CMS) on Ubuntu 16.04
★ How To Create First Post On Your WordPress Blog
Configure permalinks on your local server for wordpress.
Step #01: Goto /etc/apache2/sites-available/ and see defaults file like as 000-default.conf file. Now you can create new file like as wp.conf and open any editor.
root@Wordpress:~# vi /etc/apache2/sites-available/wp.conf
Insert below all lines into wp.conf file.
<Directory /var/www/html/> Options Indexes FollowSymLinks AllowOverride All Require all granted </Directory>
Step #02: Now restart your web server details below:
root@Wordpress:~# a2ensite wp.conf root@Wordpress:~# service apache2 reload root@Wordpress:~# a2enmod rewrite root@Wordpress:~# systemctl restart apache2
Now enjoy your wordpress server on your local machine.
Leave a Comment