933
edits
(MyNavMenu) |
John Stanton (talk | contribs) |
||
Line 70: | Line 70: | ||
== .htaccess == | == .htaccess == | ||
John, I've just installed mediawiki at http://chicagocoop.net/wiki and I'd like to have the urls show up like they do here, http://chicagocoop.net/wiki/PageName without the index.php and such. How do I do that? Thanks! [[TedErnst]] | <small>[[User talk:TedErnst|talk]]</small> 14:16, 11 June 2006 (EDT) | John, I've just installed mediawiki at http://chicagocoop.net/wiki and I'd like to have the urls show up like they do here, http://chicagocoop.net/wiki/PageName without the index.php and such. How do I do that? Thanks! [[TedErnst]] | <small>[[User talk:TedErnst|talk]]</small> 14:16, 11 June 2006 (EDT) | ||
::This is what our .htaccess looks like [[User:John Stanton|John]] 16:17, 11 June 2006 (EDT) | |||
<pre> | |||
RewriteEngine on | |||
RewriteCond %{REQUEST_FILENAME} -f [ornext] | |||
RewriteCond %{REQUEST_FILENAME} -d | |||
RewriteRule .* - [last] | |||
RewriteRule ^([^?].+)$ /index.php/$1 [L] | |||
RewriteRule ^(.+)$ /index.php/$1 [L,QSA] | |||
AddDefaultCharset utf-8 | |||
</pre> | |||
== MyNavMenu == | == MyNavMenu == | ||
Another mediawiki question for you. I can't figure out how to edit the sidebar on my new install. I see that here at WikiIndex it's MediaWiki:MyNavMenu, but that page doesn't exist on my new install. Any suggestions? [[TedErnst]] | <small>[[User talk:TedErnst|talk]]</small> 14:44, 11 June 2006 (EDT) | Another mediawiki question for you. I can't figure out how to edit the sidebar on my new install. I see that here at WikiIndex it's MediaWiki:MyNavMenu, but that page doesn't exist on my new install. Any suggestions? [[TedErnst]] | <small>[[User talk:TedErnst|talk]]</small> 14:44, 11 June 2006 (EDT) |
edits