Permalinks in Wordpress - Page not found

前端 未结 6 699
误落风尘
误落风尘 2021-01-01 03:29

I\'ve been searching for hours but haven\'t found anything that seems to be able to solves this issue.

Here\'s the scenario:

I\'m making a wp theme based on

6条回答
  •  长发绾君心
    2021-01-01 04:25

    For those using apache. You will need to

    1. Ensure you have .htaccess in root path of the site you are hosting. Example /var/www
    2. Update the /etc/apache2/sites-available/default

    From

    
                Options Indexes FollowSymLinks MultiViews
                AllowOverride None
                Order allow,deny
                allow from all
        
    

    To

    
                Options Indexes FollowSymLinks MultiViews
                AllowOverride All
                Order allow,deny
                allow from all
        
    

    Hope this helps someone

提交回复
热议问题