wordpress - Apache index.php redirect for base and sub directory -
wordpress - Apache index.php redirect for base and sub directory -
i looking run wordpress , magento on same domain. wordpress installed @ root of site , magento installed @ /store/.
i have had apache config setup wordpress (having requests redirect index.php), apache configuration logic need requests /store/* goto /store/index.php ?
you should able maintain default magento .htaccess file in store directory along other magento files, exclude path wordpress rewrites. i'm not date on wordpress .htaccess files may like, should case of adding rewritecond.
i guess rewrite wordpress along lines of...
rewritecond %{request_uri} !-f rewritecond %{request_uri} !-d rewriterule (.*) /index.php?$1 [qsa,l]
if case add together rewritecond should trick...
rewritecond %{request_uri !^store/
posting wordpress .htaccess file may lead more accurate advice.
apache wordpress magento
Comments
Post a Comment