<?xml version='1.0' encoding='UTF-8'?>
<rss version='2.0'>
	<channel>
		<title>cotonti.com : Перестали работать ЧПУ с кириллицей</title>
		<link>https://www.cotonti.com</link>
		<description>Последние сообщения в теме</description>
		<generator>Cotonti</generator>
		<language>en</language>
		<pubDate>Thu, 30 Apr 2026 01:46:22 -0000</pubDate>

		<item>
			<title>Roffun</title>
			<description><![CDATA[<blockquote class="fp"><a href="https://www.cotonti.com/forums?m=posts&amp;q=8904&amp;d=1#44404">#44404</a> <strong>kushelbek:</strong>
<p>Подозреваю(но не уверен),  что отвались тогда, когда обновил движок с последний мастер версии на github.</p>
</blockquote>

<p>Возможно, так как в Cotonti был очень неприятный баг - дубли не отдавали 404 во многих местах, почитайте:</p>

<p>https://github.com/Cotonti/Cotonti/issues/1441</p>

<p>https://github.com/Cotonti/Cotonti/issues/1611</p>

<p>Проблема уже закрыта:</p>

<p>https://github.com/Cotonti/Cotonti/pull/1625</p>

<p>Поэтому обработка ЧПУ стала строже.</p>
<p class="updated"><strong>Добавлено 5 минут спустя:</strong></p><p>Как проверить что проблема не в Cotonti а в некорректном ЧПУ:</p>

<p>На тестовом сервере отключаете Url Editor, закомментируйте при необходимости в .htaccess свои выражения и проверьте пути. Если кириллические алиасы (созданные в движке) работают, значит корректируйте свои конструкции редиректов.</p>
]]></description>
			<pubDate>ср, 25 сен 2019 14:43:17 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ru/forums?m=posts&q=8904&d=0#post44411]]></link>
		</item>
		<item>
			<title>kushelbek</title>
			<description><![CDATA[<p>Всем добрый день.</p>

<p>Подскажите пожалуйста с чем может быть связано то, что перестали рабоать ЧПУ с кириллецей, раньше все было отлично, но теперь отвалились урлы, выдают 404 ошибку.</p>

<p>Мой .htaccess</p>

<pre class="brush:php;gutter:false;toolbar:false;">
################ Cotonti Handy URLs for Apache #######################
 
# Below are the rules to be included in your main .htaccess file or httpd.conf
 
# Rewrite engine options
Options -Indexes
RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# C без www на www
RewriteCond %{HTTP_HOST} ^([^www].*)$
RewriteRule ^(.*)$ https://www.%1/$1 [L,R=301]
 
# Server-relative path to Cotonti. Replace it with your path if you run Cotonti
# in a subfolder
RewriteBase "/"
 
# Language selector
RewriteRule ^(en|ru|de|nl)/(.*) $2?l=$1 [QSA,NC,NE]
 
# Sitemap shortcut
RewriteRule ^sitemap\.xml$ index.php?r=sitemap [L]
 
# Admin area and message are special scripts
RewriteRule ^admin/([a-z0-9]+) admin.php?m=$1 [QSA,NC,NE,L]
RewriteRule ^(admin|login|message)(/|\?|$) $1.php [QSA,NC,NE,L]
 
# users
RewriteRule ^employers/?$ index.php?e=users&amp;group=employer [QSA,NC,NE,L]
RewriteRule ^freelancers/?$ index.php?e=users&amp;group=freelancer [QSA,NC,NE,L]
RewriteRule ^employers/([a-zA-Z0-9_./%-]+)/?$ index.php?e=users&amp;group=employer&amp;cat=$1 [QSA,NC,NE,L]
RewriteRule ^freelancers/([a-zA-Z0-9_./%-]+)/?$ index.php?e=users&amp;group=freelancer&amp;cat=$1 [QSA,NC,NE,L]
 
# forums
RewriteRule ^forums/([a-zA-Z0-9_./%-]+)/topic([0-9]+)/page([0-9]+)?$ index.php?e=forums&amp;m=posts&amp;q=$2&amp;d=$3 [QSA,NC,NE,L]
RewriteRule ^forums/([a-zA-Z0-9_./%-]+)/topic([0-9]+)?$ index.php?e=forums&amp;m=posts&amp;q=$2 [QSA,NC,NE,L]
RewriteRule ^forums/([a-zA-Z0-9_./%-]+)/post([0-9]+)?$ index.php?e=forums&amp;m=posts&amp;id=$2 [QSA,NC,NE,L]
RewriteRule ^forums/([a-zA-Z0-9_./%-]+)/([a-zA-Z0-9_%-]+)/page([0-9]+)?$ index.php?e=forums&amp;m=topics&amp;s=$2&amp;d=$3 [QSA,NC,NE,L]
RewriteRule ^forums/([a-zA-Z0-9_./%-]+)/([a-zA-Z0-9_%-]+)/?$ index.php?e=forums&amp;m=topics&amp;s=$2 [QSA,NC,NE,L]
RewriteRule ^forums/([a-zA-Z0-9_%-]+)/?$ index.php?e=forums&amp;c=$1 [QSA,NC,NE,L]
RewriteRule ^forums/?$ index.php?e=forums [QSA,NC,NE,L]
 
# System category has priority over /system folder
RewriteRule ^system/?$  index.php?rwr=system [QSA,NC,NE,L]
 
# All the rest goes through standard rewrite gateway
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php?rwr=$1 [QSA,NC,NE,L]</pre>

<p> </p>

<p>Подозреваю(но не уверен),  что отвались тогда, когда обновил движок с последний мастер версии на github.</p>

<p class="updated"><strong>Добавлено 2 часа спустя:</strong></p>

<p>Решил проблему ьем, что включил транслетирацию и пересоздал урлы</p>
]]></description>
			<pubDate>ср, 25 сен 2019 06:26:49 -0000</pubDate>
			<link><![CDATA[https://www.cotonti.com/ru/forums?m=posts&q=8904&d=0#post44404]]></link>
		</item>
	</channel>
</rss>