在管理文件夹中的htacesss文件中,删除了wamp上的php扩展名,尽管效果很好.与灯泡服务器一起移至ubuntu时.它给出了404找不到.但是htaccess可以完美地用于其他诸如索引路由之类的东西.下面是我在htaccess文件上使用的内容.
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$$1.php [NC,L]
DirectoryIndex index.php
解决方法:
尝试以下规则:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$$1.php
要么
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule (.*) $1.php [L]
要么
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^\.]+)$$1.php [NC,L]
如果此全局规则对您不起作用,请尝试以下代码:-
在此代码中,将“ work”替换为项目的根目录.
RewriteEngine on
RewriteBase /work/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !\.php$
RewriteRule .* $0.php [L]
在Linux中,您需要ON重写模块.
打开您的终端(ctrl alt t)并运行此命令.
sudo a2enmod rewrite
然后通过以下命令重新启动apache2:
sudo service apache2 restart
本教程link将为您提供帮助.
希望它对你有用:)