Can anyone help me to write the .htaccess rules for theme switcher reloaded plugin for wordpress. site.com/?wptheme=theme to become site.com/theme I found something on a website: Options +FollowSymLinks RewriteEngine on RewriteRule ^([A-Za-z0-9]+)/?$ index.php?wptheme=$1 Code (markup): It`s working but the problem is that it changes the theme but it is not returning the main content page as normal. It returns a 404 error. Please help !
this is the content of my .htaccess: Options +FollowSymLinks RewriteEngine on RewriteRule ^([A-Za-z0-9]+)/?$ index.php?wptheme=$1 # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wp/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /wp/index.php [L] </IfModule> # END WordPress Code (markup):