> For the complete documentation index, see [llms.txt](https://docs.norrnext.com/norrcompetition/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.norrnext.com/norrcompetition/troubleshooting/submit-button-is-not-working.md).

# 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.
