php - Wordpress links don't work -


i'm newbie in wordpress , have started use , have problem.
changed permalinks settings
enter image description here
, in admin panel links of pages changed too
enter image description here
when click on link in menu http://mysite/services/, 404 error instead of page.
what's wrong? need change other settings?
use local server winginx.

this problem occurs if mod_rewrite function not working on server, in case can overwrite issue manually editing .htaccess file. should this:

<ifmodule mod_rewrite.c> rewriteengine on rewritebase / rewriterule ^index\.php$ - [l] rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule . /index.php [l] </ifmodule>


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -