我有以下重写条件,它工作正常:
RewriteEngine on
RewriteRule ^([a-z0-9_-]+).html$ index.php/page/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index.php|asset|robots.txt)
RewriteRule ^(.*)$ index.php/$1 [L]
但是,只需向我的网址添加一个尾随反斜杠,网站就会中断。我见过几个类似的问题和答案,但没有任何适合我,主要是因为我不熟悉htaccess。
如何使我的网址自动更改从
http://localhost:8888/mysite/mylink/
自
http://localhost:8888/mysite/mylink
我正在使用代码点火器,我的应用程序仍在本地主机中。感谢这方面的任何帮助。谢谢。
只需更改所有链接,最后不要使用斜杠。