O
O
OneOlOf2021-02-09 15:52:58
htaccess
OneOlOf, 2021-02-09 15:52:58

How to make a beautiful CNC url?

Some difficulties arose ...

I have a directory /reg/index.php
Tried to access it at site.com/reg

Made a .htaccess file, one of the examples that I added there

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} (.*)
RewriteCond %{REQUEST_URI} /$ [NC]
RewriteRule ^(.*)(/)$ $1 [L,R=301]
</IfModule>


As soon as I didn’t try to do it
As a result, I always get this
6022840e0814a031092211.png

Tell me how to do it right?

It seems that in the virtual host I specified: AllowOverride All
And the module: rewrite -> Enabled

Answer the question

In order to leave comments, you need to log in

1 answer(s)
V
Viktor Taran, 2021-02-09
@shambler81

DirectoryIndex index.php index.html index.htm

RewriteCond %{REQUEST_URI} ^(.*)/index\.php$
   # URL cодержит index.php в конце.
RewriteCond %{REQUEST_METHOD} =GET
   # Выявляем GET запрос в URL (не POST).
RewriteRule ^(.*)$ %1/ [R=301,L]
   # Удалить index.php из URL.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question