Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Rank Math Support

    (@rankmathsupport)

    Hello @giorgi1992,

    Thank you for contacting Rank Math support.

    Our plugin doesn’t have the option to force the lowercase in the URLs but we are aware that this can be achieved with some custom code or plugins. You can get in touch with your host and check with them as they might already have a solution for this.

    If you have Apache’s mod_speling enabled, all you need in your .htaccess file is this:

    <IfModule mod_speling.c>
    CheckCaseOnly On
    CheckSpelling On
    </IfModule>

    Please don’t hesitate to get in touch in case you need our assistance with anything else.

    Thread Starter Giorgi1992

    (@giorgi1992)

    Thanks for help i put that code but not works ??

    # BEGIN WordPress
    # The directives (lines) between "BEGIN WordPress" and "END WordPress" are
    # dynamically generated, and should only be modified via WordPress filters.
    # Any changes to the directives between these markers will be overwritten.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteRule ^en/wp-login.php /wp-login.php [QSA,L]
    RewriteRule ^ka-ge/wp-login.php /wp-login.php [QSA,L]
    RewriteRule ^ru/wp-login.php /wp-login.php [QSA,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    RewriteEngine On
    RewriteCond %{HTTPS} !=on
    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

    # BEGIN cPanel-generated php ini directives, do not edit
    # Manual editing of this file may result in unexpected behavior.
    # To make changes to this file, use the cPanel MultiPHP INI Editor (Home >> Software >> MultiPHP INI Editor)
    # For more information, read our documentation (https://go.cpanel.net/EA4ModifyINI)
    <IfModule php8_module>
    php_flag display_errors Off
    php_value max_execution_time 1200
    php_value max_input_time 600
    php_value max_input_vars 5000
    php_value memory_limit 1024M
    php_value post_max_size 516M
    php_value session.gc_maxlifetime 1440
    php_value session.save_path "/var/cpanel/php/sessions/ea-php82"
    php_value upload_max_filesize 512M
    php_flag zlib.output_compression Off
    </IfModule>
    <IfModule lsapi_module>
    php_flag display_errors Off
    php_value max_execution_time 1200
    php_value max_input_time 600
    php_value max_input_vars 5000
    php_value memory_limit 1024M
    php_value post_max_size 516M
    php_value session.gc_maxlifetime 1440
    php_value session.save_path "/var/cpanel/php/sessions/ea-php82"
    php_value upload_max_filesize 512M
    php_flag zlib.output_compression Off
    </IfModule>
    # END cPanel-generated php ini directives, do not edit
    # BEGIN EWWWIO
    # The directives (lines) between "BEGIN EWWWIO" and "END EWWWIO" are
    # dynamically generated, and should only be modified via WordPress filters.
    # Any changes to the directives between these markers will be overwritten.
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTP_ACCEPT} image/webp
    RewriteCond %{REQUEST_FILENAME} (.*)\.(jpe?g|png|gif)$
    RewriteCond %{REQUEST_FILENAME}.webp -f
    RewriteCond %{QUERY_STRING} !type=original
    RewriteRule (.+)\.(jpe?g|png|gif)$ %{REQUEST_URI}.webp [T=image/webp,L]
    </IfModule>
    <IfModule mod_headers.c>
    <FilesMatch "\.(jpe?g|png|gif)$">
    Header append Vary Accept
    </FilesMatch>
    </IfModule>
    AddType image/webp .webp
    # END EWWWIO
    # CASE SENSITIVE URL
    <IfModule mod_speling.c>
    CheckCaseOnly On
    CheckSpelling On
    </IfModule>
    Plugin Support Rank Math Support

    (@rankmathsupport)

    Hello @giorgi1992,

    We recommend getting in touch with your hosting provider, as they will be in a better position to help you with this.

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.