WordPress Permalinks not working

I am trying to create pretty permalinks through WordPress and I keep getting 404 errors. I am combing the Internet and I cannot find any solution. I've never had a problem with this, so I'm completely at a dead end.

Hosting is located in the "Network Solutions" section. I called them and they sent me this link: http://www.networksolutions.com/support/PHP-ini-for-UNIX-Shared-Hosting-FAQ

What I tried: 1. Adding the php.ini file to my root. 2. Adding the php.ini file to the cgi-bin folder 3. Adding overwrite commands to the .htaccess file (which is located in the root directory of my site).

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /stage/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /stage/index.php [L]
</IfModule>
# END WordPress 

After each of them, I saved the permalink settings to discard the changes.

I am still getting 404 error.

+4
2

FTP .htaccess, , , /wp-content//wp-includes/. , , - , 666. . 660. .htaccess:

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

: index.php , :

/index.php/%year%/%monthnum%/%day%/%postname%/
+3

Ubuntu 14.04, . ; Pagination "non-uugly" Permalinks ( .htaccess, ).

conf Apache ( Ubuntu 14.04:/etc/apache2/apache2.conf) AllowOverride None FileInfo

<Directory /var/www/>
        Options Indexes FollowSymLinks 
        AllowOverride FileInfo
        Require all granted
</Directory>

, Rewrite:

sudo a2enmod rewrite

sudo service apache2 restart

, , : https://askubuntu.com/questions/48362/how-to-enable-mod-rewrite-in-apache

+8

Source: https://habr.com/ru/post/1534504/