Skip to content

Instantly share code, notes, and snippets.

@renalpha
Last active May 28, 2019 13:25
Show Gist options
  • Save renalpha/5327cfe8ab2297dfefef49f0898a2cef to your computer and use it in GitHub Desktop.
Save renalpha/5327cfe8ab2297dfefef49f0898a2cef to your computer and use it in GitHub Desktop.
Laravel post api | Allow trailing slash post routes
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
# Dont redirect on POST methods....
RewriteCond %{REQUEST_METHOD} !POST
RewriteRule ^ %1 [L,R=301]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment