关于php .htaccess

最近弄一个站。本地做好了。买了一空间。linux的 apache2.0的。上传上去总显示服务器500错误。网上查了一下。有的说apache模块没有开启。还有的说htaccess文件规则写错了。后来通过不断的检测。.htaccess确实有问题。网上找了好多都不好使。要不是复制的文章就是不好使。下面给出两个好用的。

window下IIS的规则

<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L]
</IfModule>


linux下的规则

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>


打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论