Aşağıdaki htaccess kullanarak, ben yeniden yazmak mümkün olmuştur site.com / profile.php? Username = xyz için site.com / xyz,
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ profile.php?user=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ profile.php?user=$1
, Yukarıda aşağıdaki ekleme
RewriteRule ^([a-zA-Z0-9_-]+)/section$ section.php?user=$1
RewriteRule ^([a-zA-Z0-9_-]+)/section/$ section.php?user=$1
did not resolve site.com/section.php?username=xyz to site.com/xyz/section. Am I doing anything wrong here?