• Hello,

    I have a plugin that has a search function with many pages (listings) and I want to make the plugin SEO friendly and its all under wordpress.

    The urls look like

    /listings/property-inventory/?pg=1&ipp=All&rentown=__&from=$0.00&to=$175,000&style=&beds=1&baths=2&submit=Search

    Where /listings/property-inventory/ is the already SEO’d wordpress page.

    I want it to look like /listings/property-inventory/search/page-1/list-all/from-0.00/to-0.00/beds-1/baths-2/ OR something neat like that.

    This is my currently .htaccess

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    Can I do that somehow?

The topic ‘htaccess wordpress plugin?’ is closed to new replies.