# Submit button is not working

Sometimes you can face an issue when submit buttons are not working and nothing happens on click. This could happen due to some *.htaccess* rules that remove end slash in URL and requests.

The following rules can cause this:

```
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} ^(.+)/$
RewriteRule ^(.+)/$ /$1 [R=301,L]
```

Please take a note that Akeeba Admin Tools is generating such rules automatically.

To solve this issue simply remove or better comment out these lines in your *.htaccess* file.
