.htaccess - htaccess to web.config 500 internal server error -
i have web page working on linux server.
 content of htaccess file 
<ifmodule mod_rewrite.c> rewriteengine on rewritecond %{request_filename} !-f rewritecond %{request_filename} !-d rewriterule ^(.*)$  index.php?sayfa=$1 [l] </ifmodule>   i moved page windows server supports php , mysql. htaccess did not work. created web.config code using online tool. webconfig code.
<rule name="rule 1q" stopprocessing="true"> <match url="^(.*)$"  /> <action type="rewrite" url="/index.php?sayfa={r:1}"  /> </rule>   but code not work? how can fix it? lot
 
 
  
Comments
Post a Comment