.htaccess文件是不工作的Go Daddy服务器上(.htaccess file is not

2019-09-18 09:05发布

我有一个GoDaddy的服务器上托管的网站。 对于SEO我已经做了一切从PHP扩展自由的规则。 对于URL重写我使用.htaccess文件

.htaccess文件正在运行的本地服务器上的罚款是XAMPP,但直播服务器(GoDaddy的服务器)上它无法正常工作。

我不知道想法.htaccess文件代码

.htaccess文件内容

RewriteEngine On
Options +MultiViews

Answer 1:

我发现自己回答

Options +FollowSymLinks -MultiViews 
# Turn mod_rewrite on
RewriteEngine On
RewriteBase /

## hide .php extension
# To externally redirect /dir/foo.php to /dir/foo
RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC]
RewriteRule ^ %1 [R,L,NC]

## To internally redirect /dir/foo to /dir/foo.php
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^ %{REQUEST_URI}.php [L]


Answer 2:

也许#有一个与目录设置的问题,试着将一个空的.htaccess文件RewriteEngine叙述用#或者是因为GoDaddy的设置的。 添加Apache的httpd.conf文件:设置AllowOverride FileInfo的选项”文件的根目录。



文章来源: .htaccess file is not working on go daddy server