How to change the page address? Those. How do CNC systems and the like work? After all, they do not use GET requests with which the page would be formed? Or create?

For example, I have a site.ru/privet page on Wordpress. How can I make it open at site.ru/poka?

  • 2
    Why produce questions? = \ - Zowie

1 answer 1

If applied to apache, then in the .htaccess file we write something like the following:

<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^poka$ /privet [R=301] </IfModule> 

also, you can simply put a symbolic link called "poka", referring to "privet", to the root and include:

 <IfModule mod_rewrite.c> Options +FollowSymLinks </IfModule> 

in general, the mod_rewrite module has many different features, google it.