dunksphotography
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Page Not Found ErrorIs there a place I can go in and manually change httpd.conf? I use godaddy and while I’m pretty new to anything more complex then html I know they have a unreal amount of manual options to configure your server.
Forum: Networking WordPress
In reply to: Page Not Found ErrorI tried inputting the subfolder .htaccess file from that page and it just ended up causing a “500 internal server error” so i deleted it completely and the site came back online but still no working multisite. Now the multisite home pages don’t even show up but I’m assuming that’s cause of no .htaccess file. I don’t know if it’s relevant or not but it doesn’t seem like any of the extra wordpress php files were created when I setup the basic multisite settings.
This is what I put in this time:
# BEGIN WordPress
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]# uploaded files
RewriteRule ^([_0-9a-zA-Z-]+/)?files/(.+) wp-includes/ms-files.php?file=$2 [L]# add a trailing slash to /wp-admin
RewriteRule ^([_0-9a-zA-Z-]+/)?wp-admin$ $1wp-admin/ [R=301,L]RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ – [L]
RewriteRule ^[_0-9a-zA-Z-]+/(wp-(content|admin|includes).*) $1 [L]
RewriteRule ^[_0-9a-zA-Z-]+/(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
# END WordPressForum: Networking WordPress
In reply to: Page Not Found Errorokay, I’m pretty clueless when it comes to most of this stuff.
This is what I have in it:
RewriteEngine On RewriteCond %{QUERY_STRING} ^.*(w|h|f)\=.*$ RewriteRule ^(wp\-content\/uploads\/.*\.)(jpg|JPG|jpeg|png|PNG|gif|GIF)$ /thumb.php?image=$1$2 [QSA,L] # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L]Forum: Networking WordPress
In reply to: Page Not Found ErrorI couldn’t figure out how to properly, which is why I setup the network as a sub-path directory instead.