我正在使用MediaWiki,我想从我的网址中删除index.php。我查看了MediaWiki网站上的文档,但他们并不清楚。
他们都希望使用这样的网址http://domain.com/wiki/page
我想使用http://domain.com/page
。
有什么想法吗?
答案 0 :(得分:6)
文档在他们的网站上相当清楚。您可以查看here以获取完整的文档(我直接链接您的用例),包括不同Web服务器上的各种其他配置示例。
答案 1 :(得分:3)
我觉得文档太冗长而且不是很有帮助。文档中给出的向导选项是在主域上配置wiki的最简单方法。
http://shorturls.redwerks.org/
此网站有一个向wiki轻松配置shortURL的向导。
您希望文章名称为http://domain.com/page
/$1
并提交该脚本将根据您的要求提供准确的配置代码
答案 2 :(得分:0)
这可能是您的解决方案:
var StakeInput = React.createClass( {
getInitialState: function(){
return {stake: ''}
},
handleStakeChange: function(e){
const stakeInputValue = e.target.value.replace(/£/g, '').trim()
this.setState({
stake: stakeInputValue
});
},
render: function(){
return (
<div>
Place your stake:
<input type="text" value={'£ ' + this.state.stake}
onChange={this.handleStakeChange}/>
</div>
)
}
});
React.render(<StakeInput />, document.getElementById('output'));
https://www.mediawiki.org/wiki/Help:Extension:ParserFunctions#.23titleparts https://www.mediawiki.org/wiki/Help:Magic_words#URL_data