Search Our Database

Troubleshooting Website Error 414 (Request URL Too Long) – Parameter in URL

Last updated on |

Introduction

This Knowledge Base guide addresses the issue of URLs that are too long for the server to interpret, resulting in an error. A common reason for this issue is the presence of parameters in the URL, which can cause the server to exceed its URL length limit. This guide explains how to configure the .htaccess file to remove specific parameters from URLs, preventing this error and improving URL readability.

 

Issue

To identify if your URL includes problematic parameters, check if it contains “params.” For example:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
https://www.domain.com/?params=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
https://www.domain.com/?params=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
https://www.domain.com/?params=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789

If this format appears in your URLs, follow the solution below to remove the parameters.

 

Solution

Step 1: Access the .htaccess File

  1. Log in via SSH as a root user. Use the following command to gain root access:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
sudo su -
sudo su -
sudo su -
  1. Navigate to the .htaccess file location in your website directory:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
cd /home/<user>/domains/<your domain>/public_html/
cd /home/<user>/domains/<your domain>/public_html/
cd /home/<user>/domains/<your domain>/public_html/

 

Step 2: List Files in the Public_HTML Directory

List all files in the public_html directory to confirm the presence of the .htaccess file:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
ls -la
ls -la
ls -la

 

Step 3: Edit the .htaccess File

  1. Open .htaccess for editing:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
vim .htaccess
vim .htaccess
vim .htaccess

Press i to enable edit mode.

 

Step 4: Add Rewrite Rules

In the .htaccess file, add the following lines to remove the params parameter from URLs:

  • Enable Rewrite Engine: If the RewriteEngine directive is not already present, add the following line:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
RewriteEngine On
RewriteEngine On
RewriteEngine On
  • Add Rewrite Conditions and Rules: Insert the following lines below RewriteEngine On to strip the params parameter from URLs:
Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
RewriteCond %{QUERY_STRING} ^(.*)&?params=[^&]+&?(.*)$ [NC]
RewriteRule ^ %{REQUEST_URI}?%1%2 [R=301,L]
RewriteCond %{QUERY_STRING} ^(.*)&?params=[^&]+&?(.*)$ [NC] RewriteRule ^ %{REQUEST_URI}?%1%2 [R=301,L]
RewriteCond %{QUERY_STRING} ^(.*)&?params=[^&]+&?(.*)$ [NC]
RewriteRule ^ %{REQUEST_URI}?%1%2 [R=301,L]

 

Step 5: Save and Close the .htaccess File

  1. Press ESC to exit edit mode.
  2. Type :wq and press Enter to save the changes and close the file.

 

Step 6: Test the URL

Browse the website URL that previously included parameters, such as:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
https://www.domain.com/?params=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
https://www.domain.com/?params=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
https://www.domain.com/?params=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789

 

The URL should now display as:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
https://www.domain.com/
https://www.domain.com/
https://www.domain.com/

 

indicating that the parameters have been removed.

 

Important Notes

⚠️ Important Note: Always back up your .htaccess file before making changes. This allows you to restore the original version if needed.

 

 

Conclusion

Following these steps should help resolve the 414 error by removing unnecessary parameters from URLs. Your website should now load without exceeding the server’s URL length limit.

For further assistance, or if you encounter any issues, please contact the support team at support@ipserverone.com.