apache中访问不了伪静态页面的解决方法

2023年 4月 21日 64.5k 0

1、安装 复制代码 代码如下: ./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite --enable-ssl 这时apache已经拥有的伪静态功能了,称为内建伪静态。 2、如果安装的时候没有 --enable-rewrit

1、安装复制代码 代码如下:./configure --prefix=/usr/local/apache2 --enable-so --enable-rewrite --enable-ssl

这时apache已经拥有的伪静态功能了,称为内建伪静态。

2、如果安装的时候没有  --enable-rewrite  这个参数,那么:到“LoadModule” 区域,在最后一行加入“LoadModule rewrite_module modules/mod_rewrite.so”(必选独占一行),然后重启apache服务器即可。

3、让apache服务器支持.htaccessvim /usr/local/apache2/conf/extra/http-vhostsOptions FollowSymLinksAllowOverride None改为Options FollowSymLinksAllowOverride All就可以了。但是需要在网站文件中加入一个htaccess文件。才可以综合支持伪静态功能。(在网站文件目录下)vim .htaccess

复制代码 代码如下:RewriteEngine OnRewriteBase /# Rewrite规则RewriteRule ^index\.htm$ index\.phpRewriteRule ^jobs/jobs-show-([0-9]+)\.htm$ jobs/jobs-show\.php\?id=$1RewriteRule ^company/company-show-([0-9]+)\.htm$ company/company-show\.php\?id=$1RewriteRule ^resume/resume-show-([0-9]+)\.htm$ resume/resume-show\.php\?id=$1RewriteRule ^news/news-list-([0-9]+)-([0-9]+)\.htm$ news/news-list\.php\?id=$1&page=$2RewriteRule ^news/news-show-([0-9]+)\.htm$ news/news-show\.php\?id=$1RewriteRule ^explain/explain-show-([0-9]+)\.htm$ explain/explain-show\.php\?id=$1RewriteRule ^notice/notice-list-([0-9]+)-([0-9]+)\.htm$ notice/notice-list\.php\?id=$1&page=$2RewriteRule ^notice/notice-show-([0-9]+)\.htm$ notice/notice-show\.php\?id=$1

伪静态报错:主站好用,但是链接不好用。链接是一个静态页面。以.html结尾的,所以我判断,就是为静态页面没生效,所以就添加.htaccess文件即可。

相关文章

Oracle如何使用授予和撤销权限的语法和示例
Awesome Project: 探索 MatrixOrigin 云原生分布式数据库
下载丨66页PDF,云和恩墨技术通讯(2024年7月刊)
社区版oceanbase安装
Oracle 导出CSV工具-sqluldr2
ETL数据集成丨快速将MySQL数据迁移至Doris数据库

发布评论