wordpress permalinks not working - htaccess seems ok but getting 404 error on pages

前端 未结 10 1244
[愿得一人]
[愿得一人] 2020-12-07 19:16

I updated the permalink structure to /%postname%/ and this updated my .htaccess with:

# BEGIN WordPress

RewriteEngine On
Rewri         


        
10条回答
  •  我在风中等你
    2020-12-07 19:17

    use below .htaccess code, just put your project name (which is in www directory) in below code

    # BEGIN WordPress
    
    RewriteEngine On
    RewriteBase /project_name/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /project_name/index.php [L]
    
    
    # END WordPress
    

    Thanks

提交回复
热议问题