Answer the question
In order to leave comments, you need to log in
How to make beautiful urls in .htaccess?
Good evening!
I tried many options from the forums, but for some reason nothing helps.
On the site page (main.php), rows from the database are generated:
<a href='article.php?post=" . $t['url'] . "'>" . $t['title'] . "</a>
RewriteEngine On
RewriteRule ^/(.*)$ article.php?post=$1 [NC,L]
Answer the question
In order to leave comments, you need to log in
Found the solution CNC Tuning Guide .
The bottom line is that you need to create pages with the required url, for example:
<a href="article1">статья 1</a>
<a href="article2">статья 2</a>
RewriteEngine On
RewriteRule ^(.*)$ /article.php?url=$1 [L]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question