Install wordpress into subdirectory
Permalink
Hi,
I tried to install a wordpress into a subdirectory /blog/.
In my root I have concrete5, problem is
http://www.xtensys.be/blog doesn't works andhttp://www.xtensys.be/blog/ works.
How can I ask to .htaccess of concrete5 to not parse the /blog/ directory ?
Thank you for your help
Benoit
I tried to install a wordpress into a subdirectory /blog/.
In my root I have concrete5, problem is
http://www.xtensys.be/blog doesn't works andhttp://www.xtensys.be/blog/ works.
How can I ask to .htaccess of concrete5 to not parse the /blog/ directory ?
Thank you for your help
Benoit
Can you display your .htaccess ?
Hi Globainerds,
I already tried this, and it doesn't works.
Actually in my .htaccess I have :
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
If I had
redirect 301http://www.xtensys.be/bloghttp://www.xtensys.be/blog/
or
redirect 301 /bloghttp://www.xtensys.be/blog/
Nothing change....
But maybe I have to make an exceptions or something like this or put this line in a specific place
Thanks
I already tried this, and it doesn't works.
Actually in my .htaccess I have :
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteCond %{REQUEST_FILENAME}/index.php !-f
RewriteRule . index.php [L]
</IfModule>
If I had
redirect 301http://www.xtensys.be/bloghttp://www.xtensys.be/blog/
or
redirect 301 /bloghttp://www.xtensys.be/blog/
Nothing change....
But maybe I have to make an exceptions or something like this or put this line in a specific place
Thanks
Whilst something may appear to be in a subdirectory as far as its URL is concerned, it doesn't have to be there in your physical filespace.
So put wordpress somewhere else, then just map the urls for that part of your site or use an iframe.
So put wordpress somewhere else, then just map the urls for that part of your site or use an iframe.
redirect 301http://www.xtensys.be/blog http://www.xtensys.be/blog/
if this does not work try
redirect 301 /blog http://www.xtensys.be/blog/