9238933e by Yashwant

Trace Option disable in htaccess for security check

1 parent 3ebd730a
...@@ -9,12 +9,12 @@ ...@@ -9,12 +9,12 @@
9 RewriteRule ^(.*)/$ /$1 [L,R=301] 9 RewriteRule ^(.*)/$ /$1 [L,R=301]
10 10
11 # Handle Front Controller... 11 # Handle Front Controller...
12 #RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK|OPTION)
12 RewriteCond %{REQUEST_FILENAME} !-d 13 RewriteCond %{REQUEST_FILENAME} !-d
13 RewriteCond %{REQUEST_FILENAME} !-f 14 RewriteCond %{REQUEST_FILENAME} !-f
14 RewriteRule ^ index.php [L] 15 RewriteRule ^ index.php [L]
15 </IfModule> 16 </IfModule>
16 17
17
18 #Gzip 18 #Gzip
19 <ifmodule mod_deflate.c> 19 <ifmodule mod_deflate.c>
20 AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript text/javascript 20 AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript text/javascript
......
...@@ -296,10 +296,10 @@ if(isset($error)) ...@@ -296,10 +296,10 @@ if(isset($error))
296 296
297 297
298 <div class="form-group"> 298 <div class="form-group">
299 <input type="text" class="form-control" id="exampleInputEmail1" name=username placeholder="Login ID"> 299 <input type="text" class="form-control" id="exampleInputEmail1" name=username placeholder="Login ID" autocomplete="off">
300 </div> 300 </div>
301 <div class="form-group"> 301 <div class="form-group">
302 <input type="password" class="form-control" id="usrPwd" name=password placeholder="Password"> 302 <input type="password" class="form-control" id="usrPwd" name=password placeholder="Password" autocomplete="off">
303 </div> 303 </div>
304 304
305 <button type="submit" class="btn btn-primary btn-block login_btn">Login</button> 305 <button type="submit" class="btn btn-primary btn-block login_btn">Login</button>
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!