抱歉标题很尴尬。这是怎么回事..如果我去:
- URL.com/ # 我完美地看到了我的网站
- URL.com/sagfasgfr # 我完美地看到了我的网站(url 中的随机噪音)
- URL.com/sagfas/udsudfsa # 我得到了我的索引,但没有我的 CSS 样式(url 中的随机噪声 + 子噪声更多)
我已经配置了 HTACCESS:
ErrorDocument 404 http://URL.com
ErrorDocument 403 http://URL.com
ErrorDocument 500 http://URL.com
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
</IfModule>
我也想删除.php
,但我的重写规则不起作用。请告知顺便说一下,本网站是一个注册表单,因此家庭以外的所有页面DIR
都不应直接访问。
顺便说一句:BOX 是 APACHE,Linux
删除 .php 的重写规则导致内部服务器错误
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php