I am using Vagrant to build up a little Wordpress development VM. When I 
select permalinks (postname) then the page from an article doesn't load. 
However, when I select the standard link (i.e page id) all is working good.
I've used the service PuPHPet to build the VM.

My settings can be found [here <http://pastebin.com/pYERZ7Xy>][1]

I am using Wordpress 3.9.1 and Apache2
I've enabled mod_rewrite be executing:

    a2enmod rewrite

And my .htaccess file from Wordpress is as follows:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /svisa/
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /svisa/index.php [L]
    </IfModule>
    
    # END WordPress

it has the following permissions and ownership: 

    -rw-rw-rw- 1 vagrant www-data   248 May 30 14:52 .htaccess

My virtualhost file for the site (`/var/www/svisa/`) can be found [here 
<http://pastebin.com/LayWVfJt>][2].

from my host computer, I browse to the site via adress: 
`http://wpdev-vm/svisa/`
where `wpdev-vm` is the name of the vm.

Does anybody know what I am missing to make the permalinks work?

  [1]: http://pastebin.com/pYERZ7Xy
  [2]: http://pastebin.com/LayWVfJt

-- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to