Forum Moderators: phranque
http://mysite.com http://mysite.com/foro http://mysite.com http://mysite.com/web http://mysite.com/foro still exists and a copy of all wordpress files are also in root except the index.php, which is now the index.php from IPS... just in case (I make all these changes last night)
# BEGIN IPS
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END IPS
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /web/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /web/index.php [L]
</IfModule>
# END WordPress If you could point me to the right dirección, I'll be happy to understand the stuff...