I have problem in my Rewrite engine at .htaccess file , I used this file to convert urls from site.com/name.php?n=ahmad to site.com/ahmad
RewriteEngine On
RewriteRule ^([a-zA-Z0-9_-]+)$ name.php?n=$1
RewriteRule ^([a-zA-Z0-9_-]+)/$ name.php?n=$1u
My bugs when I call page in those status I have blank white page :
site.com/ahmad.ssite.com/english/English folder on my site but I can’t show it .
how I can fix the problem ??
Change your rules to: