程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> apache中拜訪不了偽靜態頁面的處理辦法

apache中拜訪不了偽靜態頁面的處理辦法

編輯:MySQL綜合教程

apache中拜訪不了偽靜態頁面的處理辦法。本站提示廣大學習愛好者:(apache中拜訪不了偽靜態頁面的處理辦法)文章只能為提供參考,不一定能成為您想要的結果。以下是apache中拜訪不了偽靜態頁面的處理辦法正文


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辦事器支撐.htaccess
vim /usr/local/apache2/conf/extra/http-vhosts
Options FollowSymLinks
AllowOverride None
改成
Options FollowSymLinks
AllowOverride All
便可以了。
然則須要在網站文件中參加一個htaccess文件。才可以綜合支撐偽靜態功效。(在網站文件目次下)
vim .htaccess


RewriteEngine On
RewriteBase /
# Rewrite規矩
RewriteRule ^index\.htm$ index\.php
RewriteRule ^jobs/jobs-show-([0-9]+)\.htm$ jobs/jobs-show\.php\?id=$1
RewriteRule ^company/company-show-([0-9]+)\.htm$ company/company-show\.php\?id=$1
RewriteRule ^resume/resume-show-([0-9]+)\.htm$ resume/resume-show\.php\?id=$1
RewriteRule ^news/news-list-([0-9]+)-([0-9]+)\.htm$ news/news-list\.php\?id=$1&page=$2
RewriteRule ^news/news-show-([0-9]+)\.htm$ news/news-show\.php\?id=$1
RewriteRule ^explain/explain-show-([0-9]+)\.htm$ explain/explain-show\.php\?id=$1
RewriteRule ^notice/notice-list-([0-9]+)-([0-9]+)\.htm$ notice/notice-list\.php\?id=$1&page=$2
RewriteRule ^notice/notice-show-([0-9]+)\.htm$ notice/notice-show\.php\?id=$1

偽靜態報錯:
主站好用,然則鏈接欠好用。鏈接是一個靜態頁面。以.html開頭的,所以我斷定,就是為靜態頁面沒失效,所以就添加.htaccess文件便可。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved