#если урл index.php
RewriteCond %{REQUEST_URI} ^(.*)/index\.php$
# если есть гет запрос , конструкция по краям это если он не один.
RewriteCond %{QUERY_STRING} (^|&)route=checkout/quickcheckout($|&)
#если http
RewriteCond %{HTTP} on
#Перенаправить на
RewriteRule ^(.*)$ /%{QUERY_STRING} [R=301,L]
если же тебе требуется изменить гет запрос то тут все просто обрати внимание на экран перед ?
RewriteRule ^(.*)$ /index.php\?route=checkout/quickcheckout [R=301,L]
RewriteRule ^industries/([^/]*)([/?]*)(/?)+$ http://site.ru/industries/index.php\?razd=$1&page=$2 [L]
RewriteCond %{HTTP_HOST} ^!(www|)\.site\.ru [NC]
RewriteRule ^(.*)$ http://%{HTTP_HOST}/404.php [R=301,L]
<VirtualHost _default_:80>
ServerAdmin webmaster@localhost
DocumentRoot /var/www/default/web/
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/default/web>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride None
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
RewriteRule ^rules-23$ https://site.ru/rules$ [NC,L]
RewriteRule ^rules\-23$ https://site.ru/rules$ [NC,L]