apache大师中 伪静态配置
时间: 2024-01-12 15:03:56 浏览: 114
Apache伪静态配置
为了实现伪静态,我们需要使用 Apache 的 Rewrite 模块。具体配置步骤如下:
1. 打开 Apache 的配置文件 httpd.conf,并确认 Rewrite 模块已经被加载。
2. 在 httpd.conf 文件中找到以下代码,确保 AllowOverride 设置为 All:
<Directory "/var/www/html">
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
3. 在你的站点根目录下创建一个名为 .htaccess 的文件,并在其中添加以下代码:
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/$1 [L]
4. 修改以上代码中的 index.php 为你的入口文件名称。
5. 保存 .htaccess 文件,确保文件名以 .htaccess 结尾,然后将其上传到你的站点根目录下。
6. 确认你的 Apache 服务器已经开启了 mod_rewrite 模块。
现在你的站点就已经配置好了伪静态。
阅读全文