+----------------------------------+
Anwsion Rewrite 开启方法
+----------------------------------+
第一步:
Apache:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
Nginx:
location / {
if (!-e $request_filename)
{
rewrite (.*) /index.php;
}
}
没见过比这更简单的帮助了。
阅读全文
收起全文