Wordpress permalinks issue after migrating

wiz

New Member
Reaction score
4
Location
Chicago, US Illinois
Hi everyone,

Today I was struggling with permalinks after migrating my WordPress site to a production server in the cloud. There are some configuration directives in /etc/httpd/conf/httpd.conf

<Directory "/var/www"> AllowOverride none Require all granted </Directory>

needs to be changed to

<Directory "/var/www"> AllowOverride All Require all granted </Directory>

then restarted the apache webserver

sudo systemctl restart httpd.service

Now permalinks work perfectly fine. Hope you find this useful.
 
Back
Top