Forum Moderators: phranque
Unfortunately, this is being done on a site with WordPress installed in the root directory and I know that there can be problems with this combination. Any suggestions for getting the rewrite rule to work are appreciated.
########################################
Options +FollowSymLinks
RewriteEngine On
RewriteRule /display/theme-name/ /themes/sample-theme/?wptheme=SampleTheme
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME}!-f
RewriteCond %{REQUEST_FILENAME}!-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
########################################