i set url
1
for example
tours/belgorod

but i see it like
index.php/tours/belgorod
2

check shows that there are no addresses with index.php
/admin/config/search/path/
2

Comments

fomenkoandrey created an issue. See original summary.

hchonov’s picture

Priority: Critical » Normal

According to the priority levels this issue is not critical.

Anonymous’s picture

Category: Bug report » Support request

You can use the Redirect module. It has option 'Redirect from paths like index.php and / node to the root directory.' by default (see /admin/config/search/redirect/settings). Or use custom redirect via the .htaccess file, eg:

RewriteCond %{THE_REQUEST} /index\.php(/(.*?))? [NC]
RewriteRule ^(.*?)index\.php(/(.*?))?$ /$1$2 [L,R=301,NC,NE]
fomenkoandrey’s picture

thanks for the advice.
on the server installed php 7.0
This problem has appeared on all of the sites after upgrade to 8.2.4
the problem was resolved php upgrade to version 7.1
if the problem persists - I'll open the topic.

cilefen’s picture

Status: Active » Closed (cannot reproduce)