Just installed a fresh wordpress and setup the permalinks structure to
/%category%/%postname%
However, when I try to write a new blog post, it automatically sets the permalink to uncategorized/%post-name%/ and it won't write in my post title for the post-name no matter what I try. Likewise, when I try to change the category of the post, it has no affect on "uncategorized" in the permalink. So... when I post the blog post and try to click on "view post," I get a 400 Bad Request nginx error.
I have tried modifying htaccess and it appears that mod_rewrite is on but still nothing! My htaccess file looks like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /web/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /web/index.php [L]
</IfModule>
# END WordPress
I can't for the life of me figure out why the permalink won't recognize my blog title and category.
Any help is appreciated, thank you