Question

/index.php?user=username TO /username

AND

/index.php?page=settings TO /settings

Please help me, suggest solutions for .htaccess or PHP, would be very grateful!

Était-ce utile?

La solution

change .htaccess code to

RewriteBase /

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /(.*)$ index.php?user=$1
RewriteRule /(.*)$ index.php?page=$1
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top