Pregunta

/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!

¿Fue útil?

Solución

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
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top