Если вы используете веб-хостинг Linux, перейдите по ссылке /wp-admin/options-permalink.php и выберите «post name».
Если вы используете веб-хостинг Windows,
If you are using linux web hosting, go here /wp-admin/options-permalink.php and select 'post name'.
If you are using windows web hosting, create a web.config file and paste below codes.
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name=”wordpress” patternSyntax=”Wildcard”>
<match url=”*” />
<conditions>
<add input=”{REQUEST_FILENAME}” matchType=”IsFile” negate=”true” />
<add input=”{REQUEST_FILENAME}” matchType=”IsDirectory” negate=”true” />
</conditions>
<action type=”Rewrite” url=”index.php” />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>