I have installed WordPress on my local machine(Centos 7). It worked well without pretty URL.
What I tried to get it work:
set Allowoverride All in /etc/httpd/conf/httpd.con under line and restarted the httpd service.
Created .htaccess file in WordPress directory with following line of code:
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /rakesh/index.php [L] </IfModule>
- Set permalinks to post name in WP backend settings > permalinks
As a result i get "Not Found
The requested URL /index.php was not found on this server."
- I also tried to change permission on .htaccess file 777 and assigned to it Apache user by following command
sudo chown apache /var/www/html/wordpress/.htaccess sudo chmod 777/var/www/html/wordpress/.htaccess
.