Mediawiki实现短链接伪静态:修订历史

来自维基鲸

差异选择:选中要对比的版本的单选按钮,按Enter键或下方的按钮。
说明:(当前)=与最后版本之间的差异,(之前)=与上一版本之间的差异,=小编辑。

2024年4月11日 (星期四)

2024年4月9日 (星期二)

  • 当前之前 19:002024年4月9日 (二) 19:00Xiaotian 留言 贡献 1,801字节 +18 无编辑摘要
  • 当前之前 18:592024年4月9日 (二) 18:59Xiaotian 留言 贡献 1,783字节 +1,783 创建页面,内容为“=== 一、Apache和Nginx配置 === ==== 1.程序位于根目录/ ==== '''Apache: .htaccess 文件''' <pre> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^/(.*)$ /index.php?title=$1 RewriteRule ^/*$ /index.php RewriteRule ^(.*)$ /index.php </pre> '''Nginx:''' <pre> location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php?title=$1; } rewrite ^/*$ /index.php; rewrite ^(.*)…”