Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions wordpress_stuff.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

When porting Wordpress, if permalinks can change the htaccess file but links still do not work, look at your apache config.


<VirtualHost *:80>
ServerAdmin webmaster@localhost

DocumentRoot /var/www

<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
<Directory /var/www/blog>
Options Indexes FollowSymLinks MultiViews
AllowOverride All ### HERE- CHANGE None to All
Order allow,deny
allow from all
</Directory>