我已经环顾了很长时间了,到现在为止,似乎没有任何解决方案可行 这就是我的设置: 的script.js 的index.php htaccess的
我基本上有两种类型的网址需要重定向到index.php 1.)localhost:8888 /小丑 2.)localhost:8888 / clowns / rednose
但我需要完整的URL,index.php然后加载到正确的页面
这就是我已经拥有的:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule . index.php [L]
虽然这适用于localhost:8888 / clowns 它对localhost:8888 / clowns / rednose不起作用,因为index.php正确加载但它引用的脚本不是。 当我点击script.js时,它显示script.js现在有来自index.php的代码
有人可以帮忙吗?
提前致谢