Hello I am new to Drupal it's really cool to use drupal as my CMS.
After I installed Drupal,I am trying make drupal as wordpress about this fuction.
http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
I searched about this url found this http://drupal.org/node/10843
So my .htaccess in root dir is
Options FollowSymLinks
ErrorDocument 404 drupal/index.php
DirectoryIndex index.html index.php /drupal/index.php
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule modules/(.*)$ drupal/modules/$1
RewriteRule misc/(.*)$ drupal/misc/$1
RewriteRule themes/(.*)$ drupal/themes/$1
RewriteRule sites/(.*)$ drupal/sites/$1
RewriteRule scripts/(.*)$ drupal/scripts/$1
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /drupal/index.php?q=$1 [L,QSA]
</IfModule>
And I change the value of $base_url in settings.php
Now the problem is coming, everything looks great http://waaagh.ws/ But I can't drag in the blocks edit page
there was something before the items??
what is the problem?? help me! thanks :D
Read »








