Don’t touch the .htaccess file, there’s this neat tool add_rewrite_rule() which you should hook into init:
add_action('init', function() {
add_rewrite_rule(
'search+([^/]+).html$',
'index.php?my_custom_search=1&s=$matches[1]&submit=Search',
'top'
);
});
Right after that you should flush the rewrite rules once ( by saving the permalink settings in Settings > Permalinks or with flush_rewrite_rules() BUT call that function only once and when needed ).
This should make www.site.com/search+keyword.html serve search results as www.site.com/?s=search+keyword&submit=Search
Related Posts:
- Apache Fallback instead of add_rewrite_rule
- how to combine wordpress htaccess on my root domain + php on subfolder
- custom url rewrite for wordpress
- NGINX rewrite rules for WordPress Subdirectory Multisite to support deep URL
- Chrome net::ERR_INCOMPLETE_CHUNKED_ENCODING error
- Redirect vs RedirectMatch
- How to remove index.php from WordPress site URL
- Redirect old php link to wordpress link in .htaccess
- Redirect old php link to wordpress link in .htaccess
- Cant login to wp-admin (redirecting to homepage), But CAN login to wp-login.php
- Cant login to wp-admin (redirecting to homepage), But CAN login to wp-login.php
- How to run multiple Async HTTP requests in WordPress?
- WP CLI info showing correct PHP binary but wrong version of PHP
- Does the debug.log do log rotation?
- Bypass .htaccess when using download_url
- How can I run a .php file located in my site’s root folder?
- Fix 403 error on WordPress multisite network using subdomains
- Can I write ‘RewriteCond’ using ‘functions.php’?
- How to redirect all 404 in a WordPress subdirectory to the index.php of subdirectory?
- add_rewrite_rule with bottom priority doesn’t handle the WordPress pages
- Does WP Have a Function To Generate .htaccess RewriteCond?
- How to override .htaccess with new rules without ftp or edit it manual
- WordPress Rewrite API calls not creating new rules
- apache cpu over 70% on localhost
- Newbie question: no index.php? in my plain wordpress permalink
- wp-admin/index.php gives a “500 Internal Server Error [closed]
- Memory errors with media upload, WordPress can’t use more than 96M (while there’s 512 available!)
- Change the actual (or viewable) WordPress directory structure
- Add htaccess rules with insert_with_markers at beginning of htaccess
- Cannot get media type from ‘x-mapp-php5’
- How can i redirect one url to another url using .htaccess or add_rewrite_rule
- Is XAMPP faster than running LAMP in WSL on Windows 10? [closed]
- Static variable and add_rewrite_rule?
- Apache /Ubuntu server not running WordPress installation, outputting PHP code like HTML
- How to change home or site url using action hooks or filter?
- Performance impact of rewriting WordPress URLs
- 3 blogs same installation, without WP MU
- Two Different Links for Same Product – WooCommerce [closed]
- Was told to change the .htacess file form .html to .php so this would work properly
- PHP Warning: chmod(): Operation not permitted in class-wp-filesystem-direct.php on line 173
- WordPress admin dashboard missing icons
- WordPress returning 404 for multisite pages
- Append query string to all URL’s
- custom rewrite rule help! Custom rewrite rules not applying to custom post type
- How to disable server signature on wordpress? [closed]
- Posting and image insertion problems after EasyApache4 and PHP 7 upgrade
- Loading index.php contents which located outside blog folder for post single page
- Create custom permalinks to show Custom Post Type’s relationship?
- WordPress add_rewrite_rules for custom URLs ending in .html
- Call to undefined function mysql_connect() After upgrading PHP 7.1 to 7.3
- How does WP work in conjunction with a web server?
- Troll the hackers by redirecting them
- Seo Friendly Filter URLs
- Permalinks are not working in WordPress in digitalocean
- How to allow download url redirection only if user logged in WordPress site?
- Removing files programmatically
- Apache HTTP Server stops working for only a certain local website
- WordPress Rewrite Rule
- Problem with data collection in tables
- Prevent Buddypress Rewrite Rules on Non-Buddypress pages/posts
- Change permalink structure specific category
- How to make Subdomain work for product_tag?
- How to serve WordPress folder over subdomain?
- Pages from admin dasboard missing after site migration
- Rewrite rule not working, but only when parameter is text
- Internal Server Errors – Moving working multi-site install to my localhost
- Rewrite rule for wp
- How to edit content in WordPress and the Polylang – plugin? – with demosite
- Upgrade to PHP7.3 and Changing Apache from Prefork to Event Breaks WordPress
- Huge time to first byte on live site
- Deny php execution in /wp-includes – using .htaccess in /wp-includes VS root folder
- How come there is no error if I upgrade WordPress core after locking .htaccess permissions to 644?
- WordPress Redirect / Add_Rewrite_Rule – Non Index.php Page
- How to change query string with pretty URL in WordPress using .htaccess file
- Problem with ajax request and directory structure after site migration
- Strange special character/Latin characters
- How can I add “.html” to the end of a single URL on a WordPress website?
- Resource 404 error on multisite subdirectory install
- redirect 301 with special character like WIX site “#!”
- 301 redirect from webpage to wordpress page in the same root
- rewrite_rule – working fine but broken for pagination
- What to do after a wrong RewriteRule?
- Redirect homepage /page/1/ to /blog/page/1/
- Admin-area broken through weird issues
- Blog only showing code
- how to exclude admin page from add_rewrite_rule in wordpress
- Why I can download any file except PHP files from a URL but I can download any from another site?
- Can’t get pretty permalinks to work without index.php
- WordPress Memory limit not increasing
- Having an HTTP error 500 after migrating a website
- session_start(): Cannot find save handler ‘mm’ – session startup failed in /sites
- how to put shortcode to the top of the page – theme 2014
- How to use multiple 404 Error Pages in WordPress
- WordPress add parameters with friendly url structure
- Increase Upload Size with htaccess | MAMP
- add_rewrite_rule image from /images/site2/favicon.ico to /favico.ico
- wp-login – unable to redirect user to a custom login url
- Same Custom Post Type Slug and Custom Taxonomy Slug, with hierarchial unique permalink structure
- 404 Error after URL update
- How to add global CSS to all webpages without installing any plugin?