wordpress的.htaccess文件记录
根目录
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} !^www.gamecf.cn [NC,OR]
RewriteCond %{HTTP:X-Forwarded-Proto} !HTTPS [NC]
RewriteRule ^(.*)$ https://www.gamecf.cn/$1 [L,R=301]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_METHOD} ^(HTML)
RewriteRule ^(.*)$ /index.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
子目录
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{QUERY_STRING} s=(.*)
RewriteRule ^(.*)$ ../index.php [QSA,L]
RewriteCond %{REQUEST_METHOD} ^(HTML)
RewriteRule ^(.*)$ ../index.php [QSA,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ ../index.php [QSA,L]
</IfModule>
很想知道这些网站背后的大神都是哪些人?